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