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