C:
char c = '\u7933';
printf("%c\n", c); // Output: 礳
JavaScript:
const char = '\u7933';
console.log(char); // Output: 礳
Java:
char c = '\u7933';
System.out.println(c); // Output: 礳
JSON:
{"text": "\u7933"} // Value: 礳
Python:
char = '\u7933'
print(char) # Output: 礳
Perl:
my $char = "\x{7933}";
print $char; # Output: 礳
PHP:
$char = "\x{7933}";
echo $char; // Output: 礳
Ruby:
char = "\u{7933}"
puts char # Output: 礳
Rust:
let c = '\u{7933}';
println!("{}", c); // Output: 礳
Go:
char := '\u7933'
fmt.Printf("%c\n", char) // Output: 礳
CSS:
/* CSS content property */
.element::before {
content: "\007933"; /* 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%B3
MD5:
addb0cd1ac081189d284f4113346a650
SHA1:
c101194c59b7350ff66a5e6afa6e92e4c37a8fd1
Base64:
56Sz