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