C:
char c = '\u910A';
printf("%c\n", c); // Output: 鄊
JavaScript:
const char = '\u910A';
console.log(char); // Output: 鄊
Java:
char c = '\u910A';
System.out.println(c); // Output: 鄊
JSON:
{"text": "\u910A"} // Value: 鄊
Python:
char = '\u910A'
print(char) # Output: 鄊
Perl:
my $char = "\x{910A}";
print $char; # Output: 鄊
PHP:
$char = "\x{910A}";
echo $char; // Output: 鄊
Ruby:
char = "\u{910A}"
puts char # Output: 鄊
Rust:
let c = '\u{910A}';
println!("{}", c); // Output: 鄊
Go:
char := '\u910A'
fmt.Printf("%c\n", char) // Output: 鄊
CSS:
/* CSS content property */
.element::before {
content: "\00910A"; /* 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%8A
MD5:
c102fa8a6e650ee73f9077c70666962a
SHA1:
c9f07c6bb09d7f15ce2c39eb10d4ee19c296843d
Base64:
6YSK