C:
char c = '\u9116';
printf("%c\n", c); // Output: 鄖
JavaScript:
const char = '\u9116';
console.log(char); // Output: 鄖
Java:
char c = '\u9116';
System.out.println(c); // Output: 鄖
JSON:
{"text": "\u9116"} // Value: 鄖
Python:
char = '\u9116'
print(char) # Output: 鄖
Perl:
my $char = "\x{9116}";
print $char; # Output: 鄖
PHP:
$char = "\x{9116}";
echo $char; // Output: 鄖
Ruby:
char = "\u{9116}"
puts char # Output: 鄖
Rust:
let c = '\u{9116}';
println!("{}", c); // Output: 鄖
Go:
char := '\u9116'
fmt.Printf("%c\n", char) // Output: 鄖
CSS:
/* CSS content property */
.element::before {
content: "\009116"; /* 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%96
MD5:
9ae4bf76e46a3e87c4a4e389b0b45a28
SHA1:
1ead0f851afe8f8ec70c96452dfa668fb6c538e5
Base64:
6YSW