C:
char c = '\u792E';
printf("%c\n", c); // Output: 礮
JavaScript:
const char = '\u792E';
console.log(char); // Output: 礮
Java:
char c = '\u792E';
System.out.println(c); // Output: 礮
JSON:
{"text": "\u792E"} // Value: 礮
Python:
char = '\u792E'
print(char) # Output: 礮
Perl:
my $char = "\x{792E}";
print $char; # Output: 礮
PHP:
$char = "\x{792E}";
echo $char; // Output: 礮
Ruby:
char = "\u{792E}"
puts char # Output: 礮
Rust:
let c = '\u{792E}';
println!("{}", c); // Output: 礮
Go:
char := '\u792E'
fmt.Printf("%c\n", char) // Output: 礮
CSS:
/* CSS content property */
.element::before {
content: "\00792E"; /* 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%AE
MD5:
8ab7c5d5e26b30b6fc12f11d15b0b0f9
SHA1:
ccedd2b53b612e10ba9eb40dde19337943332bc9
Base64:
56Su