C:
char c = '\u9394';
printf("%c\n", c); // Output: 鎔
JavaScript:
const char = '\u9394';
console.log(char); // Output: 鎔
Java:
char c = '\u9394';
System.out.println(c); // Output: 鎔
JSON:
{"text": "\u9394"} // Value: 鎔
Python:
char = '\u9394'
print(char) # Output: 鎔
Perl:
my $char = "\x{9394}";
print $char; # Output: 鎔
PHP:
$char = "\x{9394}";
echo $char; // Output: 鎔
Ruby:
char = "\u{9394}"
puts char # Output: 鎔
Rust:
let c = '\u{9394}';
println!("{}", c); // Output: 鎔
Go:
char := '\u9394'
fmt.Printf("%c\n", char) // Output: 鎔
CSS:
/* CSS content property */
.element::before {
content: "\009394"; /* 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%8E%94
MD5:
7853264c657feebd26c0323bf1015d5c
SHA1:
5cdf799ec7f1162579b3eead266c034cbc96bdb7
Base64:
6Y6U