C:
char c = '\u9128';
printf("%c\n", c); // Output: 鄨
JavaScript:
const char = '\u9128';
console.log(char); // Output: 鄨
Java:
char c = '\u9128';
System.out.println(c); // Output: 鄨
JSON:
{"text": "\u9128"} // Value: 鄨
Python:
char = '\u9128'
print(char) # Output: 鄨
Perl:
my $char = "\x{9128}";
print $char; # Output: 鄨
PHP:
$char = "\x{9128}";
echo $char; // Output: 鄨
Ruby:
char = "\u{9128}"
puts char # Output: 鄨
Rust:
let c = '\u{9128}';
println!("{}", c); // Output: 鄨
Go:
char := '\u9128'
fmt.Printf("%c\n", char) // Output: 鄨
CSS:
/* CSS content property */
.element::before {
content: "\009128"; /* 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%A8
MD5:
50e8d87dcc4abfb8ec81750f2892496b
SHA1:
096f836603595f6e6c249477ae927dcd9d7a387b
Base64:
6YSo