C:
char c = '\u9468';
printf("%c\n", c); // Output: 鑨
JavaScript:
const char = '\u9468';
console.log(char); // Output: 鑨
Java:
char c = '\u9468';
System.out.println(c); // Output: 鑨
JSON:
{"text": "\u9468"} // Value: 鑨
Python:
char = '\u9468'
print(char) # Output: 鑨
Perl:
my $char = "\x{9468}";
print $char; # Output: 鑨
PHP:
$char = "\x{9468}";
echo $char; // Output: 鑨
Ruby:
char = "\u{9468}"
puts char # Output: 鑨
Rust:
let c = '\u{9468}';
println!("{}", c); // Output: 鑨
Go:
char := '\u9468'
fmt.Printf("%c\n", char) // Output: 鑨
CSS:
/* CSS content property */
.element::before {
content: "\009468"; /* 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%A8
MD5:
91630fd27b1eb81a5551160ff1185045
SHA1:
1ce8d95ec8222e7ade2c4454919b60e61f7d74b9
Base64:
6ZGo