C:
char c = '\u7425';
printf("%c\n", c); // Output: 琥
JavaScript:
const char = '\u7425';
console.log(char); // Output: 琥
Java:
char c = '\u7425';
System.out.println(c); // Output: 琥
JSON:
{"text": "\u7425"} // Value: 琥
Python:
char = '\u7425'
print(char) # Output: 琥
Perl:
my $char = "\x{7425}";
print $char; # Output: 琥
PHP:
$char = "\x{7425}";
echo $char; // Output: 琥
Ruby:
char = "\u{7425}"
puts char # Output: 琥
Rust:
let c = '\u{7425}';
println!("{}", c); // Output: 琥
Go:
char := '\u7425'
fmt.Printf("%c\n", char) // Output: 琥
CSS:
/* CSS content property */
.element::before {
content: "\007425"; /* 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%90%A5
MD5:
869cdbee24d110311dc56df9f1b67dbb
SHA1:
6f0a01aa8b20e5101f842b9ff89b26cedea2b887
Base64:
55Cl