C:
char c = '\u7928';
printf("%c\n", c); // Output: 礨
JavaScript:
const char = '\u7928';
console.log(char); // Output: 礨
Java:
char c = '\u7928';
System.out.println(c); // Output: 礨
JSON:
{"text": "\u7928"} // Value: 礨
Python:
char = '\u7928'
print(char) # Output: 礨
Perl:
my $char = "\x{7928}";
print $char; # Output: 礨
PHP:
$char = "\x{7928}";
echo $char; // Output: 礨
Ruby:
char = "\u{7928}"
puts char # Output: 礨
Rust:
let c = '\u{7928}';
println!("{}", c); // Output: 礨
Go:
char := '\u7928'
fmt.Printf("%c\n", char) // Output: 礨
CSS:
/* CSS content property */
.element::before {
content: "\007928"; /* 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%A8
MD5:
508b99b2d69e96f342dacbc93800dc25
SHA1:
95f79eef304f8a5d11fc275a90db91266684a170
Base64:
56So