C:
char c = '\u9344';
printf("%c\n", c); // Output: 鍄
JavaScript:
const char = '\u9344';
console.log(char); // Output: 鍄
Java:
char c = '\u9344';
System.out.println(c); // Output: 鍄
JSON:
{"text": "\u9344"} // Value: 鍄
Python:
char = '\u9344'
print(char) # Output: 鍄
Perl:
my $char = "\x{9344}";
print $char; # Output: 鍄
PHP:
$char = "\x{9344}";
echo $char; // Output: 鍄
Ruby:
char = "\u{9344}"
puts char # Output: 鍄
Rust:
let c = '\u{9344}';
println!("{}", c); // Output: 鍄
Go:
char := '\u9344'
fmt.Printf("%c\n", char) // Output: 鍄
CSS:
/* CSS content property */
.element::before {
content: "\009344"; /* 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%84
MD5:
6fdf71000e2824dbc3e22b6982fdd113
SHA1:
192b592177dbf6776fdba2b2a144dcb002d63d9c
Base64:
6Y2E