# Interface: com.pnfsoftware.jeb.util.format.IAsciiable

Interface for objects supporting encoding to an ASCII string.

## Method: encode
- return type: `java.lang.String`

Description: The implementor should encode the current object as an ASCII form like: 

```

 param1=value1&param1=value2&...
 
```
 valueX can use separators that are neither `. - * _ + %` nor alphanumeric characters.
return: the encoded string

