C:
char c = '\u7907';
printf("%c\n", c); // Output: 礇
JavaScript:
const char = '\u7907';
console.log(char); // Output: 礇
Java:
char c = '\u7907';
System.out.println(c); // Output: 礇
JSON:
{"text": "\u7907"} // Value: 礇
Python:
char = '\u7907'
print(char) # Output: 礇
Perl:
my $char = "\x{7907}";
print $char; # Output: 礇
PHP:
$char = "\x{7907}";
echo $char; // Output: 礇
Ruby:
char = "\u{7907}"
puts char # Output: 礇
Rust:
let c = '\u{7907}';
println!("{}", c); // Output: 礇
Go:
char := '\u7907'
fmt.Printf("%c\n", char) // Output: 礇
CSS:
/* CSS content property */
.element::before {
content: "\007907"; /* 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%87
MD5:
bdd342778d197975de445c24dfd2a428
SHA1:
438725c6d1ff112eb6e89fe864576e6d5fa815aa
Base64:
56SH