[ColdBox 4.0.0] Does coldbox apply any string conversion in model?

I’m trying to use guava library from google to create a domain parser.

However it seems that my model make some string conversion. I’m expecting an output as this:

Struct
domain
string 网络

fqdn
string 网络.ac

tld
string ac

tldgroup
string ac

validHostname
boolean true

But instead I get this from my model:

Struct
domain
string 网络

fqdn
string 网络.ac

tld
string ac

tldgroup
string ac

validHostname
boolean true

I’m on Railo 4.2

No, ColdBox doesn’t actually do anything with your model by default. This is most certainly a page encoding issue.

http://www.railodocs.org/tag/cfprocessingdirective

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

I have set no processingdirective. I dump this directly from my model…