C:
char c = '\u9112';
printf("%c\n", c); // Output: 鄒
JavaScript:
const char = '\u9112';
console.log(char); // Output: 鄒
Java:
char c = '\u9112';
System.out.println(c); // Output: 鄒
JSON:
{"text": "\u9112"} // Value: 鄒
Python:
char = '\u9112'
print(char) # Output: 鄒
Perl:
my $char = "\x{9112}";
print $char; # Output: 鄒
PHP:
$char = "\x{9112}";
echo $char; // Output: 鄒
Ruby:
char = "\u{9112}"
puts char # Output: 鄒
Rust:
let c = '\u{9112}';
println!("{}", c); // Output: 鄒
Go:
char := '\u9112'
fmt.Printf("%c\n", char) // Output: 鄒
CSS:
/* CSS content property */
.element::before {
content: "\009112"; /* 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%92
MD5:
0b31c03a4b0f7ad4df1e4cd65516accf
SHA1:
48cd04bd7389a6b435f6ce0e480d9fb3688c2832
Base64:
6YSS