C:
char c = '\u791A';
printf("%c\n", c); // Output: 礚
JavaScript:
const char = '\u791A';
console.log(char); // Output: 礚
Java:
char c = '\u791A';
System.out.println(c); // Output: 礚
JSON:
{"text": "\u791A"} // Value: 礚
Python:
char = '\u791A'
print(char) # Output: 礚
Perl:
my $char = "\x{791A}";
print $char; # Output: 礚
PHP:
$char = "\x{791A}";
echo $char; // Output: 礚
Ruby:
char = "\u{791A}"
puts char # Output: 礚
Rust:
let c = '\u{791A}';
println!("{}", c); // Output: 礚
Go:
char := '\u791A'
fmt.Printf("%c\n", char) // Output: 礚
CSS:
/* CSS content property */
.element::before {
content: "\00791A"; /* 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%9A
MD5:
1a2cf8c0fd8378439a251a484a754620
SHA1:
15ff2bad8e5736b38b3453bd48f2f6c97bcb4da5
Base64:
56Sa