# Class: com.pnfsoftware.jeb.util.primitives.Characters

Utility methods for `character` or any number interpreted as character.

## Constructor: Characters


## Static Method: isAsciiChar
- parameter: `b`, type: `int`
- return type: `boolean`

Description: Indicates if character is printable ASCII.
parameter: b: byte to test
return: true if the value is in the printable ASCII range

## Static Method: isAsciiCharOrCommonFormat
- parameter: `b`, type: `int`
- return type: `boolean`

Description: Indicates if character is printable ASCII or any CR/LF/TAB separator.
parameter: b: byte to test
return: true if the value is printable ASCII, carriage return, line feed, or tab

