C:
char c = '\u7100';
printf("%c\n", c); // Output: 焀
JavaScript:
const char = '\u7100';
console.log(char); // Output: 焀
Java:
char c = '\u7100';
System.out.println(c); // Output: 焀
JSON:
{"text": "\u7100"} // Value: 焀
Python:
char = '\u7100'
print(char) # Output: 焀
Perl:
my $char = "\x{7100}";
print $char; # Output: 焀
PHP:
$char = "\x{7100}";
echo $char; // Output: 焀
Ruby:
char = "\u{7100}"
puts char # Output: 焀
Rust:
let c = '\u{7100}';
println!("{}", c); // Output: 焀
Go:
char := '\u7100'
fmt.Printf("%c\n", char) // Output: 焀
CSS:
/* CSS content property */
.element::before {
content: "\007100"; /* 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%80
MD5:
d97d9a4caaefe4320c8d2c19d79a7a17
SHA1:
1652abebb75e6263246fc23a5a41eb9b32c2f352
Base64:
54SA