C:
char c = '\u9126';
printf("%c\n", c); // Output: 鄦
JavaScript:
const char = '\u9126';
console.log(char); // Output: 鄦
Java:
char c = '\u9126';
System.out.println(c); // Output: 鄦
JSON:
{"text": "\u9126"} // Value: 鄦
Python:
char = '\u9126'
print(char) # Output: 鄦
Perl:
my $char = "\x{9126}";
print $char; # Output: 鄦
PHP:
$char = "\x{9126}";
echo $char; // Output: 鄦
Ruby:
char = "\u{9126}"
puts char # Output: 鄦
Rust:
let c = '\u{9126}';
println!("{}", c); // Output: 鄦
Go:
char := '\u9126'
fmt.Printf("%c\n", char) // Output: 鄦
CSS:
/* CSS content property */
.element::before {
content: "\009126"; /* 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%A6
MD5:
85d78e2f5f5814ad67419a87185b7aca
SHA1:
071e026185cc395b0bb5c3c786145eab19565dbd
Base64:
6YSm