C:
char c = '\u92DF';
printf("%c\n", c); // Output: 鋟
JavaScript:
const char = '\u92DF';
console.log(char); // Output: 鋟
Java:
char c = '\u92DF';
System.out.println(c); // Output: 鋟
JSON:
{"text": "\u92DF"} // Value: 鋟
Python:
char = '\u92DF'
print(char) # Output: 鋟
Perl:
my $char = "\x{92DF}";
print $char; # Output: 鋟
PHP:
$char = "\x{92DF}";
echo $char; // Output: 鋟
Ruby:
char = "\u{92DF}"
puts char # Output: 鋟
Rust:
let c = '\u{92DF}';
println!("{}", c); // Output: 鋟
Go:
char := '\u92DF'
fmt.Printf("%c\n", char) // Output: 鋟
CSS:
/* CSS content property */
.element::before {
content: "\0092DF"; /* 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%8B%9F
MD5:
b511f3dbce0a339339b8a19b5c073d3b
SHA1:
5d284437a4b6769ec1286461b2d1a0b16b3689df
Base64:
6Yuf