C:
char c = '\u7925';
printf("%c\n", c); // Output: 礥
JavaScript:
const char = '\u7925';
console.log(char); // Output: 礥
Java:
char c = '\u7925';
System.out.println(c); // Output: 礥
JSON:
{"text": "\u7925"} // Value: 礥
Python:
char = '\u7925'
print(char) # Output: 礥
Perl:
my $char = "\x{7925}";
print $char; # Output: 礥
PHP:
$char = "\x{7925}";
echo $char; // Output: 礥
Ruby:
char = "\u{7925}"
puts char # Output: 礥
Rust:
let c = '\u{7925}';
println!("{}", c); // Output: 礥
Go:
char := '\u7925'
fmt.Printf("%c\n", char) // Output: 礥
CSS:
/* CSS content property */
.element::before {
content: "\007925"; /* 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%A5
MD5:
1545843bf7a0f33c864d04188d85ac89
SHA1:
3a27ad7be2a7bebddd3d6fe43ccab9222b659785
Base64:
56Sl