C:
char c = '\u7204';
printf("%c\n", c); // Output: 爄
JavaScript:
const char = '\u7204';
console.log(char); // Output: 爄
Java:
char c = '\u7204';
System.out.println(c); // Output: 爄
JSON:
{"text": "\u7204"} // Value: 爄
Python:
char = '\u7204'
print(char) # Output: 爄
Perl:
my $char = "\x{7204}";
print $char; # Output: 爄
PHP:
$char = "\x{7204}";
echo $char; // Output: 爄
Ruby:
char = "\u{7204}"
puts char # Output: 爄
Rust:
let c = '\u{7204}';
println!("{}", c); // Output: 爄
Go:
char := '\u7204'
fmt.Printf("%c\n", char) // Output: 爄
CSS:
/* CSS content property */
.element::before {
content: "\007204"; /* 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%88%84
MD5:
279eb3e8d9db57e128205f691c61e92f
SHA1:
af254e449a59d18d9c26ec7357819c75dcb1d62f
Base64:
54iE