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