C:
char c = '\u7929';
printf("%c\n", c); // Output: 礩
JavaScript:
const char = '\u7929';
console.log(char); // Output: 礩
Java:
char c = '\u7929';
System.out.println(c); // Output: 礩
JSON:
{"text": "\u7929"} // Value: 礩
Python:
char = '\u7929'
print(char) # Output: 礩
Perl:
my $char = "\x{7929}";
print $char; # Output: 礩
PHP:
$char = "\x{7929}";
echo $char; // Output: 礩
Ruby:
char = "\u{7929}"
puts char # Output: 礩
Rust:
let c = '\u{7929}';
println!("{}", c); // Output: 礩
Go:
char := '\u7929'
fmt.Printf("%c\n", char) // Output: 礩
CSS:
/* CSS content property */
.element::before {
content: "\007929"; /* 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%A9
MD5:
36eeabb813836d7de9e41503855b2e58
SHA1:
bb60b146e895e3c7c64118589290ba75699104d8
Base64:
56Sp