C:
char c = '\u71A4';
printf("%c\n", c); // Output: 熤
JavaScript:
const char = '\u71A4';
console.log(char); // Output: 熤
Java:
char c = '\u71A4';
System.out.println(c); // Output: 熤
JSON:
{"text": "\u71A4"} // Value: 熤
Python:
char = '\u71A4'
print(char) # Output: 熤
Perl:
my $char = "\x{71A4}";
print $char; # Output: 熤
PHP:
$char = "\x{71A4}";
echo $char; // Output: 熤
Ruby:
char = "\u{71A4}"
puts char # Output: 熤
Rust:
let c = '\u{71A4}';
println!("{}", c); // Output: 熤
Go:
char := '\u71A4'
fmt.Printf("%c\n", char) // Output: 熤
CSS:
/* CSS content property */
.element::before {
content: "\0071A4"; /* 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%86%A4
MD5:
3d9f85b8eb7cb984419515224d9af1c2
SHA1:
ffc1a0216553ba524105fbae43641902cff0fdde
Base64:
54ak