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