C:
char c = '\u9470';
printf("%c\n", c); // Output: 鑰
JavaScript:
const char = '\u9470';
console.log(char); // Output: 鑰
Java:
char c = '\u9470';
System.out.println(c); // Output: 鑰
JSON:
{"text": "\u9470"} // Value: 鑰
Python:
char = '\u9470'
print(char) # Output: 鑰
Perl:
my $char = "\x{9470}";
print $char; # Output: 鑰
PHP:
$char = "\x{9470}";
echo $char; // Output: 鑰
Ruby:
char = "\u{9470}"
puts char # Output: 鑰
Rust:
let c = '\u{9470}';
println!("{}", c); // Output: 鑰
Go:
char := '\u9470'
fmt.Printf("%c\n", char) // Output: 鑰
CSS:
/* CSS content property */
.element::before {
content: "\009470"; /* 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%B0
MD5:
ee6318da96ef6146ad5ad4977652db29
SHA1:
65e43d745292f41cb431389823d337b71aa288e4
Base64:
6ZGw