C:
char c = '\u7906';
printf("%c\n", c); // Output: 礆
JavaScript:
const char = '\u7906';
console.log(char); // Output: 礆
Java:
char c = '\u7906';
System.out.println(c); // Output: 礆
JSON:
{"text": "\u7906"} // Value: 礆
Python:
char = '\u7906'
print(char) # Output: 礆
Perl:
my $char = "\x{7906}";
print $char; # Output: 礆
PHP:
$char = "\x{7906}";
echo $char; // Output: 礆
Ruby:
char = "\u{7906}"
puts char # Output: 礆
Rust:
let c = '\u{7906}';
println!("{}", c); // Output: 礆
Go:
char := '\u7906'
fmt.Printf("%c\n", char) // Output: 礆
CSS:
/* CSS content property */
.element::before {
content: "\007906"; /* 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%86
MD5:
3a1a8f87d120654912e5cbaf6fe94755
SHA1:
e469e76d3bd78b4f9b1fe4b848728b8b1e675c2c
Base64:
56SG