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