C:
char c = '\u7900';
printf("%c\n", c); // Output: 礀
JavaScript:
const char = '\u7900';
console.log(char); // Output: 礀
Java:
char c = '\u7900';
System.out.println(c); // Output: 礀
JSON:
{"text": "\u7900"} // Value: 礀
Python:
char = '\u7900'
print(char) # Output: 礀
Perl:
my $char = "\x{7900}";
print $char; # Output: 礀
PHP:
$char = "\x{7900}";
echo $char; // Output: 礀
Ruby:
char = "\u{7900}"
puts char # Output: 礀
Rust:
let c = '\u{7900}';
println!("{}", c); // Output: 礀
Go:
char := '\u7900'
fmt.Printf("%c\n", char) // Output: 礀
CSS:
/* CSS content property */
.element::before {
content: "\007900"; /* 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%80
MD5:
55d6f605b8482f038fda1c06b9f3205b
SHA1:
a03d8c107f32a76ea5e1eb6b8052ce8c127638dd
Base64:
56SA