C:
char c = '\u9123';
printf("%c\n", c); // Output: 鄣
JavaScript:
const char = '\u9123';
console.log(char); // Output: 鄣
Java:
char c = '\u9123';
System.out.println(c); // Output: 鄣
JSON:
{"text": "\u9123"} // Value: 鄣
Python:
char = '\u9123'
print(char) # Output: 鄣
Perl:
my $char = "\x{9123}";
print $char; # Output: 鄣
PHP:
$char = "\x{9123}";
echo $char; // Output: 鄣
Ruby:
char = "\u{9123}"
puts char # Output: 鄣
Rust:
let c = '\u{9123}';
println!("{}", c); // Output: 鄣
Go:
char := '\u9123'
fmt.Printf("%c\n", char) // Output: 鄣
CSS:
/* CSS content property */
.element::before {
content: "\009123"; /* 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%A3
MD5:
13aac01dea0789489769f67245963e9b
SHA1:
e4803ee2eb18b1403381728399ce5dbe3dcd0dc4
Base64:
6YSj