C:
char c = '\u9454';
printf("%c\n", c); // Output: 鑔
JavaScript:
const char = '\u9454';
console.log(char); // Output: 鑔
Java:
char c = '\u9454';
System.out.println(c); // Output: 鑔
JSON:
{"text": "\u9454"} // Value: 鑔
Python:
char = '\u9454'
print(char) # Output: 鑔
Perl:
my $char = "\x{9454}";
print $char; # Output: 鑔
PHP:
$char = "\x{9454}";
echo $char; // Output: 鑔
Ruby:
char = "\u{9454}"
puts char # Output: 鑔
Rust:
let c = '\u{9454}';
println!("{}", c); // Output: 鑔
Go:
char := '\u9454'
fmt.Printf("%c\n", char) // Output: 鑔
CSS:
/* CSS content property */
.element::before {
content: "\009454"; /* 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%94
MD5:
377e0676d2d8a96913909f544b3eb3ed
SHA1:
99d4b82c03c87928185af70fc62cb219e4d8d37c
Base64:
6ZGU