C:
char c = '\u946B';
printf("%c\n", c); // Output: 鑫
JavaScript:
const char = '\u946B';
console.log(char); // Output: 鑫
Java:
char c = '\u946B';
System.out.println(c); // Output: 鑫
JSON:
{"text": "\u946B"} // Value: 鑫
Python:
char = '\u946B'
print(char) # Output: 鑫
Perl:
my $char = "\x{946B}";
print $char; # Output: 鑫
PHP:
$char = "\x{946B}";
echo $char; // Output: 鑫
Ruby:
char = "\u{946B}"
puts char # Output: 鑫
Rust:
let c = '\u{946B}';
println!("{}", c); // Output: 鑫
Go:
char := '\u946B'
fmt.Printf("%c\n", char) // Output: 鑫
CSS:
/* CSS content property */
.element::before {
content: "\00946B"; /* 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%AB
MD5:
a5642fff6cb2daf8d6604528b52bd5fa
SHA1:
d7e656eedffc6dde99ba1ea9adcd8e805eb7ba87
Base64:
6ZGr