C:
char c = '\u9ECE';
printf("%c\n", c); // Output: 黎
JavaScript:
const char = '\u9ECE';
console.log(char); // Output: 黎
Java:
char c = '\u9ECE';
System.out.println(c); // Output: 黎
JSON:
{"text": "\u9ECE"} // Value: 黎
Python:
char = '\u9ECE'
print(char) # Output: 黎
Perl:
my $char = "\x{9ECE}";
print $char; # Output: 黎
PHP:
$char = "\x{9ECE}";
echo $char; // Output: 黎
Ruby:
char = "\u{9ECE}"
puts char # Output: 黎
Rust:
let c = '\u{9ECE}';
println!("{}", c); // Output: 黎
Go:
char := '\u9ECE'
fmt.Printf("%c\n", char) // Output: 黎
CSS:
/* CSS content property */
.element::before {
content: "\009ECE"; /* 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%BB%8E
MD5:
d51c7e4fa0a0b128d2ee1c8fa20da90f
SHA1:
8721e01b941b81b91240cf6cebf5416a02f530a3
Base64:
6buO