C:
char c = '\u7A1E';
printf("%c\n", c); // Output: 稞
JavaScript:
const char = '\u7A1E';
console.log(char); // Output: 稞
Java:
char c = '\u7A1E';
System.out.println(c); // Output: 稞
JSON:
{"text": "\u7A1E"} // Value: 稞
Python:
char = '\u7A1E'
print(char) # Output: 稞
Perl:
my $char = "\x{7A1E}";
print $char; # Output: 稞
PHP:
$char = "\x{7A1E}";
echo $char; // Output: 稞
Ruby:
char = "\u{7A1E}"
puts char # Output: 稞
Rust:
let c = '\u{7A1E}';
println!("{}", c); // Output: 稞
Go:
char := '\u7A1E'
fmt.Printf("%c\n", char) // Output: 稞
CSS:
/* CSS content property */
.element::before {
content: "\007A1E"; /* 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%9E
MD5:
90598866e602314322d15c9c0225ee62
SHA1:
adf289f6c1164d1a0128d5da6e5a52782e186510
Base64:
56ie