C:
char c = '\u74D1';
printf("%c\n", c); // Output: 瓑
JavaScript:
const char = '\u74D1';
console.log(char); // Output: 瓑
Java:
char c = '\u74D1';
System.out.println(c); // Output: 瓑
JSON:
{"text": "\u74D1"} // Value: 瓑
Python:
char = '\u74D1'
print(char) # Output: 瓑
Perl:
my $char = "\x{74D1}";
print $char; # Output: 瓑
PHP:
$char = "\x{74D1}";
echo $char; // Output: 瓑
Ruby:
char = "\u{74D1}"
puts char # Output: 瓑
Rust:
let c = '\u{74D1}';
println!("{}", c); // Output: 瓑
Go:
char := '\u74D1'
fmt.Printf("%c\n", char) // Output: 瓑
CSS:
/* CSS content property */
.element::before {
content: "\0074D1"; /* 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=%E7%93%91
MD5:
2ea4304d6e9f3e809b5a23ab6dac3601
SHA1:
9a9200844a41e699f290a048b68a122e016eb2cd
Base64:
55OR