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