C:
char c = '\u7120';
printf("%c\n", c); // Output: 焠
JavaScript:
const char = '\u7120';
console.log(char); // Output: 焠
Java:
char c = '\u7120';
System.out.println(c); // Output: 焠
JSON:
{"text": "\u7120"} // Value: 焠
Python:
char = '\u7120'
print(char) # Output: 焠
Perl:
my $char = "\x{7120}";
print $char; # Output: 焠
PHP:
$char = "\x{7120}";
echo $char; // Output: 焠
Ruby:
char = "\u{7120}"
puts char # Output: 焠
Rust:
let c = '\u{7120}';
println!("{}", c); // Output: 焠
Go:
char := '\u7120'
fmt.Printf("%c\n", char) // Output: 焠
CSS:
/* CSS content property */
.element::before {
content: "\007120"; /* 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%A0
MD5:
2c279e23e297b37cd70597af7f8393b4
SHA1:
3a9a3e6c62d70274d2e653dc0bad017a62f04bee
Base64:
54Sg