C:
char c = '\u92D8';
printf("%c\n", c); // Output: 鋘
JavaScript:
const char = '\u92D8';
console.log(char); // Output: 鋘
Java:
char c = '\u92D8';
System.out.println(c); // Output: 鋘
JSON:
{"text": "\u92D8"} // Value: 鋘
Python:
char = '\u92D8'
print(char) # Output: 鋘
Perl:
my $char = "\x{92D8}";
print $char; # Output: 鋘
PHP:
$char = "\x{92D8}";
echo $char; // Output: 鋘
Ruby:
char = "\u{92D8}"
puts char # Output: 鋘
Rust:
let c = '\u{92D8}';
println!("{}", c); // Output: 鋘
Go:
char := '\u92D8'
fmt.Printf("%c\n", char) // Output: 鋘
CSS:
/* CSS content property */
.element::before {
content: "\0092D8"; /* 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%98
MD5:
86a1ecd4241e174ee5c9eaa2b3464133
SHA1:
19f3cbe4bd20cf927cf069e0c45ec54618f92ef7
Base64:
6YuY