C:
char c = '\u9115';
printf("%c\n", c); // Output: 鄕
JavaScript:
const char = '\u9115';
console.log(char); // Output: 鄕
Java:
char c = '\u9115';
System.out.println(c); // Output: 鄕
JSON:
{"text": "\u9115"} // Value: 鄕
Python:
char = '\u9115'
print(char) # Output: 鄕
Perl:
my $char = "\x{9115}";
print $char; # Output: 鄕
PHP:
$char = "\x{9115}";
echo $char; // Output: 鄕
Ruby:
char = "\u{9115}"
puts char # Output: 鄕
Rust:
let c = '\u{9115}';
println!("{}", c); // Output: 鄕
Go:
char := '\u9115'
fmt.Printf("%c\n", char) // Output: 鄕
CSS:
/* CSS content property */
.element::before {
content: "\009115"; /* 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%95
MD5:
a0f8fd6c70c5af56a7e38a51f71f6763
SHA1:
97a3a7598c136b31becb970dd37d5c24bb40ca93
Base64:
6YSV