C:
char c = '\u93EA';
printf("%c\n", c); // Output: 鏪
JavaScript:
const char = '\u93EA';
console.log(char); // Output: 鏪
Java:
char c = '\u93EA';
System.out.println(c); // Output: 鏪
JSON:
{"text": "\u93EA"} // Value: 鏪
Python:
char = '\u93EA'
print(char) # Output: 鏪
Perl:
my $char = "\x{93EA}";
print $char; # Output: 鏪
PHP:
$char = "\x{93EA}";
echo $char; // Output: 鏪
Ruby:
char = "\u{93EA}"
puts char # Output: 鏪
Rust:
let c = '\u{93EA}';
println!("{}", c); // Output: 鏪
Go:
char := '\u93EA'
fmt.Printf("%c\n", char) // Output: 鏪
CSS:
/* CSS content property */
.element::before {
content: "\0093EA"; /* 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=%E9%8F%AA
MD5:
c60669f7ac6b34e7adfbd7b05fdd45c7
SHA1:
40bc40c6474879510a49b50b462b2f522668b01d
Base64:
6Y+q