C:
char c = '\u7089';
printf("%c\n", c); // Output: 炉
JavaScript:
const char = '\u7089';
console.log(char); // Output: 炉
Java:
char c = '\u7089';
System.out.println(c); // Output: 炉
JSON:
{"text": "\u7089"} // Value: 炉
Python:
char = '\u7089'
print(char) # Output: 炉
Perl:
my $char = "\x{7089}";
print $char; # Output: 炉
PHP:
$char = "\x{7089}";
echo $char; // Output: 炉
Ruby:
char = "\u{7089}"
puts char # Output: 炉
Rust:
let c = '\u{7089}';
println!("{}", c); // Output: 炉
Go:
char := '\u7089'
fmt.Printf("%c\n", char) // Output: 炉
CSS:
/* CSS content property */
.element::before {
content: "\007089"; /* 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%82%89
MD5:
579f41963c1c74841c48f1510d9142e4
SHA1:
680d3808dfe4be78847630e9a7e8779be94984c2
Base64:
54KJ