C:
char c = '\u9104';
printf("%c\n", c); // Output: 鄄
JavaScript:
const char = '\u9104';
console.log(char); // Output: 鄄
Java:
char c = '\u9104';
System.out.println(c); // Output: 鄄
JSON:
{"text": "\u9104"} // Value: 鄄
Python:
char = '\u9104'
print(char) # Output: 鄄
Perl:
my $char = "\x{9104}";
print $char; # Output: 鄄
PHP:
$char = "\x{9104}";
echo $char; // Output: 鄄
Ruby:
char = "\u{9104}"
puts char # Output: 鄄
Rust:
let c = '\u{9104}';
println!("{}", c); // Output: 鄄
Go:
char := '\u9104'
fmt.Printf("%c\n", char) // Output: 鄄
CSS:
/* CSS content property */
.element::before {
content: "\009104"; /* 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%84
MD5:
956de63db6a096d9def98d4719746de9
SHA1:
35807a75e32148def16ea168af19b0d1382d7bbe
Base64:
6YSE