C:
char c = '\u9125';
printf("%c\n", c); // Output: 鄥
JavaScript:
const char = '\u9125';
console.log(char); // Output: 鄥
Java:
char c = '\u9125';
System.out.println(c); // Output: 鄥
JSON:
{"text": "\u9125"} // Value: 鄥
Python:
char = '\u9125'
print(char) # Output: 鄥
Perl:
my $char = "\x{9125}";
print $char; # Output: 鄥
PHP:
$char = "\x{9125}";
echo $char; // Output: 鄥
Ruby:
char = "\u{9125}"
puts char # Output: 鄥
Rust:
let c = '\u{9125}';
println!("{}", c); // Output: 鄥
Go:
char := '\u9125'
fmt.Printf("%c\n", char) // Output: 鄥
CSS:
/* CSS content property */
.element::before {
content: "\009125"; /* 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%A5
MD5:
e479caeef4e9d92066f91540b9c98f41
SHA1:
10d2a67f76f446bf1c0602eef9036c3c9370b913
Base64:
6YSl