C:
char c = '\u9387';
printf("%c\n", c); // Output: 鎇
JavaScript:
const char = '\u9387';
console.log(char); // Output: 鎇
Java:
char c = '\u9387';
System.out.println(c); // Output: 鎇
JSON:
{"text": "\u9387"} // Value: 鎇
Python:
char = '\u9387'
print(char) # Output: 鎇
Perl:
my $char = "\x{9387}";
print $char; # Output: 鎇
PHP:
$char = "\x{9387}";
echo $char; // Output: 鎇
Ruby:
char = "\u{9387}"
puts char # Output: 鎇
Rust:
let c = '\u{9387}';
println!("{}", c); // Output: 鎇
Go:
char := '\u9387'
fmt.Printf("%c\n", char) // Output: 鎇
CSS:
/* CSS content property */
.element::before {
content: "\009387"; /* 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%87
MD5:
1ad418cd053e6be0ce9b8acf6a97cf06
SHA1:
b9010fee0487f4386728d33cb25b8600057e47c6
Base64:
6Y6H