C:
char c = '\u7A19';
printf("%c\n", c); // Output: 稙
JavaScript:
const char = '\u7A19';
console.log(char); // Output: 稙
Java:
char c = '\u7A19';
System.out.println(c); // Output: 稙
JSON:
{"text": "\u7A19"} // Value: 稙
Python:
char = '\u7A19'
print(char) # Output: 稙
Perl:
my $char = "\x{7A19}";
print $char; # Output: 稙
PHP:
$char = "\x{7A19}";
echo $char; // Output: 稙
Ruby:
char = "\u{7A19}"
puts char # Output: 稙
Rust:
let c = '\u{7A19}';
println!("{}", c); // Output: 稙
Go:
char := '\u7A19'
fmt.Printf("%c\n", char) // Output: 稙
CSS:
/* CSS content property */
.element::before {
content: "\007A19"; /* 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=%E7%A8%99
MD5:
26cd2d8d1cf9d2d0d50bf5e2dcb5f3b0
SHA1:
a10685e97c9d46f409968851d206b9efeea00ed1
Base64:
56iZ