C:
char c = '\u7909';
printf("%c\n", c); // Output: 礉
JavaScript:
const char = '\u7909';
console.log(char); // Output: 礉
Java:
char c = '\u7909';
System.out.println(c); // Output: 礉
JSON:
{"text": "\u7909"} // Value: 礉
Python:
char = '\u7909'
print(char) # Output: 礉
Perl:
my $char = "\x{7909}";
print $char; # Output: 礉
PHP:
$char = "\x{7909}";
echo $char; // Output: 礉
Ruby:
char = "\u{7909}"
puts char # Output: 礉
Rust:
let c = '\u{7909}';
println!("{}", c); // Output: 礉
Go:
char := '\u7909'
fmt.Printf("%c\n", char) // Output: 礉
CSS:
/* CSS content property */
.element::before {
content: "\007909"; /* 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%A4%89
MD5:
8aa9ced7bd862e8ea31ae55d86ffb714
SHA1:
48f8e81ff66e6eba5939543869692cb6d8d5b5e5
Base64:
56SJ