C:
char c = '\u9364';
printf("%c\n", c); // Output: 鍤
JavaScript:
const char = '\u9364';
console.log(char); // Output: 鍤
Java:
char c = '\u9364';
System.out.println(c); // Output: 鍤
JSON:
{"text": "\u9364"} // Value: 鍤
Python:
char = '\u9364'
print(char) # Output: 鍤
Perl:
my $char = "\x{9364}";
print $char; # Output: 鍤
PHP:
$char = "\x{9364}";
echo $char; // Output: 鍤
Ruby:
char = "\u{9364}"
puts char # Output: 鍤
Rust:
let c = '\u{9364}';
println!("{}", c); // Output: 鍤
Go:
char := '\u9364'
fmt.Printf("%c\n", char) // Output: 鍤
CSS:
/* CSS content property */
.element::before {
content: "\009364"; /* 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%A4
MD5:
691d69df82092db3477a839ee723b476
SHA1:
de803ab6436af0ca60b7940151ee2ccd9c320b43
Base64:
6Y2k