C:
char c = '\u7930';
printf("%c\n", c); // Output: 礰
JavaScript:
const char = '\u7930';
console.log(char); // Output: 礰
Java:
char c = '\u7930';
System.out.println(c); // Output: 礰
JSON:
{"text": "\u7930"} // Value: 礰
Python:
char = '\u7930'
print(char) # Output: 礰
Perl:
my $char = "\x{7930}";
print $char; # Output: 礰
PHP:
$char = "\x{7930}";
echo $char; // Output: 礰
Ruby:
char = "\u{7930}"
puts char # Output: 礰
Rust:
let c = '\u{7930}';
println!("{}", c); // Output: 礰
Go:
char := '\u7930'
fmt.Printf("%c\n", char) // Output: 礰
CSS:
/* CSS content property */
.element::before {
content: "\007930"; /* 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%B0
MD5:
49275e0f269e93563e7e5a3ab9fb7e18
SHA1:
e2c4cc8a33e2e9da26b3decaca2969ceb215149e
Base64:
56Sw