C:
char c = '\u9118';
printf("%c\n", c); // Output: 鄘
JavaScript:
const char = '\u9118';
console.log(char); // Output: 鄘
Java:
char c = '\u9118';
System.out.println(c); // Output: 鄘
JSON:
{"text": "\u9118"} // Value: 鄘
Python:
char = '\u9118'
print(char) # Output: 鄘
Perl:
my $char = "\x{9118}";
print $char; # Output: 鄘
PHP:
$char = "\x{9118}";
echo $char; // Output: 鄘
Ruby:
char = "\u{9118}"
puts char # Output: 鄘
Rust:
let c = '\u{9118}';
println!("{}", c); // Output: 鄘
Go:
char := '\u9118'
fmt.Printf("%c\n", char) // Output: 鄘
CSS:
/* CSS content property */
.element::before {
content: "\009118"; /* 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%98
MD5:
1099547aea3e157e4659079e3b4bd2a6
SHA1:
2a839b77e549caee65aa87ec93dbee8bc4cefabb
Base64:
6YSY