C:
char c = '\u7209';
printf("%c\n", c); // Output: 爉
JavaScript:
const char = '\u7209';
console.log(char); // Output: 爉
Java:
char c = '\u7209';
System.out.println(c); // Output: 爉
JSON:
{"text": "\u7209"} // Value: 爉
Python:
char = '\u7209'
print(char) # Output: 爉
Perl:
my $char = "\x{7209}";
print $char; # Output: 爉
PHP:
$char = "\x{7209}";
echo $char; // Output: 爉
Ruby:
char = "\u{7209}"
puts char # Output: 爉
Rust:
let c = '\u{7209}';
println!("{}", c); // Output: 爉
Go:
char := '\u7209'
fmt.Printf("%c\n", char) // Output: 爉
CSS:
/* CSS content property */
.element::before {
content: "\007209"; /* 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%89
MD5:
9b60bf8bb509414b5d6f24b8a81f3172
SHA1:
e793a9ff27626032a81b5120dd06298621bdb273
Base64:
54iJ