C:
char c = '\u7112';
printf("%c\n", c); // Output: 焒
JavaScript:
const char = '\u7112';
console.log(char); // Output: 焒
Java:
char c = '\u7112';
System.out.println(c); // Output: 焒
JSON:
{"text": "\u7112"} // Value: 焒
Python:
char = '\u7112'
print(char) # Output: 焒
Perl:
my $char = "\x{7112}";
print $char; # Output: 焒
PHP:
$char = "\x{7112}";
echo $char; // Output: 焒
Ruby:
char = "\u{7112}"
puts char # Output: 焒
Rust:
let c = '\u{7112}';
println!("{}", c); // Output: 焒
Go:
char := '\u7112'
fmt.Printf("%c\n", char) // Output: 焒
CSS:
/* CSS content property */
.element::before {
content: "\007112"; /* 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%84%92
MD5:
308883ab01ddfdfef28c7a3f3e0c63f9
SHA1:
c5bcf494b57e695db89cc48b08fbc25fa0bb4d91
Base64:
54SS