C:
char c = '\u93DF';
printf("%c\n", c); // Output: 鏟
JavaScript:
const char = '\u93DF';
console.log(char); // Output: 鏟
Java:
char c = '\u93DF';
System.out.println(c); // Output: 鏟
JSON:
{"text": "\u93DF"} // Value: 鏟
Python:
char = '\u93DF'
print(char) # Output: 鏟
Perl:
my $char = "\x{93DF}";
print $char; # Output: 鏟
PHP:
$char = "\x{93DF}";
echo $char; // Output: 鏟
Ruby:
char = "\u{93DF}"
puts char # Output: 鏟
Rust:
let c = '\u{93DF}';
println!("{}", c); // Output: 鏟
Go:
char := '\u93DF'
fmt.Printf("%c\n", char) // Output: 鏟
CSS:
/* CSS content property */
.element::before {
content: "\0093DF"; /* 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%9F
MD5:
06021827102cab86691ff5a6f0c332c9
SHA1:
720d6e9833da5727724c295abdf770e525ef7c0e
Base64:
6Y+f