C:
char c = '\u9111';
printf("%c\n", c); // Output: 鄑
JavaScript:
const char = '\u9111';
console.log(char); // Output: 鄑
Java:
char c = '\u9111';
System.out.println(c); // Output: 鄑
JSON:
{"text": "\u9111"} // Value: 鄑
Python:
char = '\u9111'
print(char) # Output: 鄑
Perl:
my $char = "\x{9111}";
print $char; # Output: 鄑
PHP:
$char = "\x{9111}";
echo $char; // Output: 鄑
Ruby:
char = "\u{9111}"
puts char # Output: 鄑
Rust:
let c = '\u{9111}';
println!("{}", c); // Output: 鄑
Go:
char := '\u9111'
fmt.Printf("%c\n", char) // Output: 鄑
CSS:
/* CSS content property */
.element::before {
content: "\009111"; /* 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%91
MD5:
3b0ecfac5adf9358f91c53148a3f54d0
SHA1:
18597cb7a27a18a709bebd574de6b52ea7954690
Base64:
6YSR