C:
char c = '\u9109';
printf("%c\n", c); // Output: 鄉
JavaScript:
const char = '\u9109';
console.log(char); // Output: 鄉
Java:
char c = '\u9109';
System.out.println(c); // Output: 鄉
JSON:
{"text": "\u9109"} // Value: 鄉
Python:
char = '\u9109'
print(char) # Output: 鄉
Perl:
my $char = "\x{9109}";
print $char; # Output: 鄉
PHP:
$char = "\x{9109}";
echo $char; // Output: 鄉
Ruby:
char = "\u{9109}"
puts char # Output: 鄉
Rust:
let c = '\u{9109}';
println!("{}", c); // Output: 鄉
Go:
char := '\u9109'
fmt.Printf("%c\n", char) // Output: 鄉
CSS:
/* CSS content property */
.element::before {
content: "\009109"; /* 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%89
MD5:
c5d3e2e9ea9bb73a322e34e5c0bbb805
SHA1:
7bbca3af5daafa89762fe1cf2685fc32dced7a09
Base64:
6YSJ