C:
char c = '\u9133';
printf("%c\n", c); // Output: 鄳
JavaScript:
const char = '\u9133';
console.log(char); // Output: 鄳
Java:
char c = '\u9133';
System.out.println(c); // Output: 鄳
JSON:
{"text": "\u9133"} // Value: 鄳
Python:
char = '\u9133'
print(char) # Output: 鄳
Perl:
my $char = "\x{9133}";
print $char; # Output: 鄳
PHP:
$char = "\x{9133}";
echo $char; // Output: 鄳
Ruby:
char = "\u{9133}"
puts char # Output: 鄳
Rust:
let c = '\u{9133}';
println!("{}", c); // Output: 鄳
Go:
char := '\u9133'
fmt.Printf("%c\n", char) // Output: 鄳
CSS:
/* CSS content property */
.element::before {
content: "\009133"; /* 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%B3
MD5:
7ab104031e210ea8ef528d9dd11a6fc9
SHA1:
4c373fe91044ae8fe52f565ec87786ddffa196a1
Base64:
6YSz