C:
char c = '\u93E2';
printf("%c\n", c); // Output: 鏢
JavaScript:
const char = '\u93E2';
console.log(char); // Output: 鏢
Java:
char c = '\u93E2';
System.out.println(c); // Output: 鏢
JSON:
{"text": "\u93E2"} // Value: 鏢
Python:
char = '\u93E2'
print(char) # Output: 鏢
Perl:
my $char = "\x{93E2}";
print $char; # Output: 鏢
PHP:
$char = "\x{93E2}";
echo $char; // Output: 鏢
Ruby:
char = "\u{93E2}"
puts char # Output: 鏢
Rust:
let c = '\u{93E2}';
println!("{}", c); // Output: 鏢
Go:
char := '\u93E2'
fmt.Printf("%c\n", char) // Output: 鏢
CSS:
/* CSS content property */
.element::before {
content: "\0093E2"; /* 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%A2
MD5:
98db6d413d7c3f3e6a4eb15be06ba9eb
SHA1:
3186cde2610a5e0312d515b8e8e4b4b1ea6c5e46
Base64:
6Y+i