C:
char c = '\u94E7';
printf("%c\n", c); // Output: 铧
JavaScript:
const char = '\u94E7';
console.log(char); // Output: 铧
Java:
char c = '\u94E7';
System.out.println(c); // Output: 铧
JSON:
{"text": "\u94E7"} // Value: 铧
Python:
char = '\u94E7'
print(char) # Output: 铧
Perl:
my $char = "\x{94E7}";
print $char; # Output: 铧
PHP:
$char = "\x{94E7}";
echo $char; // Output: 铧
Ruby:
char = "\u{94E7}"
puts char # Output: 铧
Rust:
let c = '\u{94E7}';
println!("{}", c); // Output: 铧
Go:
char := '\u94E7'
fmt.Printf("%c\n", char) // Output: 铧
CSS:
/* CSS content property */
.element::before {
content: "\0094E7"; /* 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%93%A7
MD5:
29710789a7c5e4bbe17839a1b2463e8d
SHA1:
140ae8a8e8f85a2acf0da38899dbcfaee48197f4
Base64:
6ZOn