C:
char c = '\u5DDE';
printf("%c\n", c); // Output: 州
JavaScript:
const char = '\u5DDE';
console.log(char); // Output: 州
Java:
char c = '\u5DDE';
System.out.println(c); // Output: 州
JSON:
{"text": "\u5DDE"} // Value: 州
Python:
char = '\u5DDE'
print(char) # Output: 州
Perl:
my $char = "\x{5DDE}";
print $char; # Output: 州
PHP:
$char = "\x{5DDE}";
echo $char; // Output: 州
Ruby:
char = "\u{5DDE}"
puts char # Output: 州
Rust:
let c = '\u{5DDE}';
println!("{}", c); // Output: 州
Go:
char := '\u5DDE'
fmt.Printf("%c\n", char) // Output: 州
CSS:
/* CSS content property */
.element::before {
content: "\005DDE"; /* Display: 州 */
}
HTML Decimal:
<p>HTML decimal: 州</p> <!-- Display: 州 -->
HTML Hexadecimal:
<p>HTML hex: 州</p> <!-- Display: 州 -->
URL Encoding:
// 州 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%9E
MD5:
b1f48f947cab79716236ebb0e4bd2a66
SHA1:
07a0df7bce2f6136fa75243c797cd4cf6f333f0f
Base64:
5bee