C:
char c = '\u7104';
printf("%c\n", c); // Output: 焄
JavaScript:
const char = '\u7104';
console.log(char); // Output: 焄
Java:
char c = '\u7104';
System.out.println(c); // Output: 焄
JSON:
{"text": "\u7104"} // Value: 焄
Python:
char = '\u7104'
print(char) # Output: 焄
Perl:
my $char = "\x{7104}";
print $char; # Output: 焄
PHP:
$char = "\x{7104}";
echo $char; // Output: 焄
Ruby:
char = "\u{7104}"
puts char # Output: 焄
Rust:
let c = '\u{7104}';
println!("{}", c); // Output: 焄
Go:
char := '\u7104'
fmt.Printf("%c\n", char) // Output: 焄
CSS:
/* CSS content property */
.element::before {
content: "\007104"; /* 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%84
MD5:
1d61d5687f3af6f9872b6f34903bbe03
SHA1:
49e7b6d41cf46cf931c4af925703595699056e29
Base64:
54SE