C:
char c = '\u9984';
printf("%c\n", c); // Output: 馄
JavaScript:
const char = '\u9984';
console.log(char); // Output: 馄
Java:
char c = '\u9984';
System.out.println(c); // Output: 馄
JSON:
{"text": "\u9984"} // Value: 馄
Python:
char = '\u9984'
print(char) # Output: 馄
Perl:
my $char = "\x{9984}";
print $char; # Output: 馄
PHP:
$char = "\x{9984}";
echo $char; // Output: 馄
Ruby:
char = "\u{9984}"
puts char # Output: 馄
Rust:
let c = '\u{9984}';
println!("{}", c); // Output: 馄
Go:
char := '\u9984'
fmt.Printf("%c\n", char) // Output: 馄
CSS:
/* CSS content property */
.element::before {
content: "\009984"; /* 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%A6%84
MD5:
974ef4c5b46e2e3d2436c3e0010fb208
SHA1:
30e199e71f72108260b62af16ec3ed47ccfed738
Base64:
6aaE