C:
char c = '\u7922';
printf("%c\n", c); // Output: 礢
JavaScript:
const char = '\u7922';
console.log(char); // Output: 礢
Java:
char c = '\u7922';
System.out.println(c); // Output: 礢
JSON:
{"text": "\u7922"} // Value: 礢
Python:
char = '\u7922'
print(char) # Output: 礢
Perl:
my $char = "\x{7922}";
print $char; # Output: 礢
PHP:
$char = "\x{7922}";
echo $char; // Output: 礢
Ruby:
char = "\u{7922}"
puts char # Output: 礢
Rust:
let c = '\u{7922}';
println!("{}", c); // Output: 礢
Go:
char := '\u7922'
fmt.Printf("%c\n", char) // Output: 礢
CSS:
/* CSS content property */
.element::before {
content: "\007922"; /* 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%A2
MD5:
33ac9db1c7eaa1c65fa24859155d180b
SHA1:
e56e54fe252291bb35a5dd741236281472fb5e42
Base64:
56Si