C:
char c = '\u79C3';
printf("%c\n", c); // Output: 秃
JavaScript:
const char = '\u79C3';
console.log(char); // Output: 秃
Java:
char c = '\u79C3';
System.out.println(c); // Output: 秃
JSON:
{"text": "\u79C3"} // Value: 秃
Python:
char = '\u79C3'
print(char) # Output: 秃
Perl:
my $char = "\x{79C3}";
print $char; # Output: 秃
PHP:
$char = "\x{79C3}";
echo $char; // Output: 秃
Ruby:
char = "\u{79C3}"
puts char # Output: 秃
Rust:
let c = '\u{79C3}';
println!("{}", c); // Output: 秃
Go:
char := '\u79C3'
fmt.Printf("%c\n", char) // Output: 秃
CSS:
/* CSS content property */
.element::before {
content: "\0079C3"; /* 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%A7%83
MD5:
634e32a39c89110d152c82930cb81f24
SHA1:
1cde9280ec7724ad9d114e0462798c7a4edcfc46
Base64:
56eD