C:
char c = '\u9102';
printf("%c\n", c); // Output: 鄂
JavaScript:
const char = '\u9102';
console.log(char); // Output: 鄂
Java:
char c = '\u9102';
System.out.println(c); // Output: 鄂
JSON:
{"text": "\u9102"} // Value: 鄂
Python:
char = '\u9102'
print(char) # Output: 鄂
Perl:
my $char = "\x{9102}";
print $char; # Output: 鄂
PHP:
$char = "\x{9102}";
echo $char; // Output: 鄂
Ruby:
char = "\u{9102}"
puts char # Output: 鄂
Rust:
let c = '\u{9102}';
println!("{}", c); // Output: 鄂
Go:
char := '\u9102'
fmt.Printf("%c\n", char) // Output: 鄂
CSS:
/* CSS content property */
.element::before {
content: "\009102"; /* 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%82
MD5:
e18cf52dc6957dc0c9727d5b4f0cf129
SHA1:
1236444ac5aa50378e19d1f1702f0143922e4d1d
Base64:
6YSC