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