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