C:
char c = '\u9494';
printf("%c\n", c); // Output: 钔
JavaScript:
const char = '\u9494';
console.log(char); // Output: 钔
Java:
char c = '\u9494';
System.out.println(c); // Output: 钔
JSON:
{"text": "\u9494"} // Value: 钔
Python:
char = '\u9494'
print(char) # Output: 钔
Perl:
my $char = "\x{9494}";
print $char; # Output: 钔
PHP:
$char = "\x{9494}";
echo $char; // Output: 钔
Ruby:
char = "\u{9494}"
puts char # Output: 钔
Rust:
let c = '\u{9494}';
println!("{}", c); // Output: 钔
Go:
char := '\u9494'
fmt.Printf("%c\n", char) // Output: 钔
CSS:
/* CSS content property */
.element::before {
content: "\009494"; /* 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%92%94
MD5:
5e07cca51fa25f82763217a48ca5341d
SHA1:
9e02c2caf13cab3875e4327bb3bdc785e31670c0
Base64:
6ZKU