C:
char c = '\u9354';
printf("%c\n", c); // Output: 鍔
JavaScript:
const char = '\u9354';
console.log(char); // Output: 鍔
Java:
char c = '\u9354';
System.out.println(c); // Output: 鍔
JSON:
{"text": "\u9354"} // Value: 鍔
Python:
char = '\u9354'
print(char) # Output: 鍔
Perl:
my $char = "\x{9354}";
print $char; # Output: 鍔
PHP:
$char = "\x{9354}";
echo $char; // Output: 鍔
Ruby:
char = "\u{9354}"
puts char # Output: 鍔
Rust:
let c = '\u{9354}';
println!("{}", c); // Output: 鍔
Go:
char := '\u9354'
fmt.Printf("%c\n", char) // Output: 鍔
CSS:
/* CSS content property */
.element::before {
content: "\009354"; /* 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%8D%94
MD5:
5d38892bb21b7593e7635cec6660e371
SHA1:
4b5c356551d24dfab2d435e300c1e437242c1e9f
Base64:
6Y2U