C:
char c = '\u9301';
printf("%c\n", c); // Output: 錁
JavaScript:
const char = '\u9301';
console.log(char); // Output: 錁
Java:
char c = '\u9301';
System.out.println(c); // Output: 錁
JSON:
{"text": "\u9301"} // Value: 錁
Python:
char = '\u9301'
print(char) # Output: 錁
Perl:
my $char = "\x{9301}";
print $char; # Output: 錁
PHP:
$char = "\x{9301}";
echo $char; // Output: 錁
Ruby:
char = "\u{9301}"
puts char # Output: 錁
Rust:
let c = '\u{9301}';
println!("{}", c); // Output: 錁
Go:
char := '\u9301'
fmt.Printf("%c\n", char) // Output: 錁
CSS:
/* CSS content property */
.element::before {
content: "\009301"; /* 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%8C%81
MD5:
7c062a410314c99fb0ef797bf158dab1
SHA1:
c0abc6a8fb921ebf3748f07b3eddda1cd30d498e
Base64:
6YyB