C:
char c = '\u9399';
printf("%c\n", c); // Output: 鎙
JavaScript:
const char = '\u9399';
console.log(char); // Output: 鎙
Java:
char c = '\u9399';
System.out.println(c); // Output: 鎙
JSON:
{"text": "\u9399"} // Value: 鎙
Python:
char = '\u9399'
print(char) # Output: 鎙
Perl:
my $char = "\x{9399}";
print $char; # Output: 鎙
PHP:
$char = "\x{9399}";
echo $char; // Output: 鎙
Ruby:
char = "\u{9399}"
puts char # Output: 鎙
Rust:
let c = '\u{9399}';
println!("{}", c); // Output: 鎙
Go:
char := '\u9399'
fmt.Printf("%c\n", char) // Output: 鎙
CSS:
/* CSS content property */
.element::before {
content: "\009399"; /* 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%8E%99
MD5:
3dcb6365550f6090717080881bf62ad0
SHA1:
5e409f90e2e6654501fbf37bfe4773903080dc7f
Base64:
6Y6Z