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