C:
char c = '\u9122';
printf("%c\n", c); // Output: 鄢
JavaScript:
const char = '\u9122';
console.log(char); // Output: 鄢
Java:
char c = '\u9122';
System.out.println(c); // Output: 鄢
JSON:
{"text": "\u9122"} // Value: 鄢
Python:
char = '\u9122'
print(char) # Output: 鄢
Perl:
my $char = "\x{9122}";
print $char; # Output: 鄢
PHP:
$char = "\x{9122}";
echo $char; // Output: 鄢
Ruby:
char = "\u{9122}"
puts char # Output: 鄢
Rust:
let c = '\u{9122}';
println!("{}", c); // Output: 鄢
Go:
char := '\u9122'
fmt.Printf("%c\n", char) // Output: 鄢
CSS:
/* CSS content property */
.element::before {
content: "\009122"; /* 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=%E9%84%A2
MD5:
ced251293e57075fc5190e5143e61c59
SHA1:
e77e7a38eed02a70d15023200c9269af99826ecf
Base64:
6YSi