C:
char c = '\u93E4';
printf("%c\n", c); // Output: 鏤
JavaScript:
const char = '\u93E4';
console.log(char); // Output: 鏤
Java:
char c = '\u93E4';
System.out.println(c); // Output: 鏤
JSON:
{"text": "\u93E4"} // Value: 鏤
Python:
char = '\u93E4'
print(char) # Output: 鏤
Perl:
my $char = "\x{93E4}";
print $char; # Output: 鏤
PHP:
$char = "\x{93E4}";
echo $char; // Output: 鏤
Ruby:
char = "\u{93E4}"
puts char # Output: 鏤
Rust:
let c = '\u{93E4}';
println!("{}", c); // Output: 鏤
Go:
char := '\u93E4'
fmt.Printf("%c\n", char) // Output: 鏤
CSS:
/* CSS content property */
.element::before {
content: "\0093E4"; /* 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%A4
MD5:
0e9bee8207fea1505588e9b1e9b57e94
SHA1:
86b208c95967b7a2dcc09427ef5451047433f470
Base64:
6Y+k