C:
char c = '\u93E8';
printf("%c\n", c); // Output: 鏨
JavaScript:
const char = '\u93E8';
console.log(char); // Output: 鏨
Java:
char c = '\u93E8';
System.out.println(c); // Output: 鏨
JSON:
{"text": "\u93E8"} // Value: 鏨
Python:
char = '\u93E8'
print(char) # Output: 鏨
Perl:
my $char = "\x{93E8}";
print $char; # Output: 鏨
PHP:
$char = "\x{93E8}";
echo $char; // Output: 鏨
Ruby:
char = "\u{93E8}"
puts char # Output: 鏨
Rust:
let c = '\u{93E8}';
println!("{}", c); // Output: 鏨
Go:
char := '\u93E8'
fmt.Printf("%c\n", char) // Output: 鏨
CSS:
/* CSS content property */
.element::before {
content: "\0093E8"; /* 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%A8
MD5:
09350e28f6e66cf112faf8050a1984e1
SHA1:
20d843a39515b7c15e7e92d19856b4edc5cf0c0e
Base64:
6Y+o