C:
char c = '\u74E1';
printf("%c\n", c); // Output: 瓡
JavaScript:
const char = '\u74E1';
console.log(char); // Output: 瓡
Java:
char c = '\u74E1';
System.out.println(c); // Output: 瓡
JSON:
{"text": "\u74E1"} // Value: 瓡
Python:
char = '\u74E1'
print(char) # Output: 瓡
Perl:
my $char = "\x{74E1}";
print $char; # Output: 瓡
PHP:
$char = "\x{74E1}";
echo $char; // Output: 瓡
Ruby:
char = "\u{74E1}"
puts char # Output: 瓡
Rust:
let c = '\u{74E1}';
println!("{}", c); // Output: 瓡
Go:
char := '\u74E1'
fmt.Printf("%c\n", char) // Output: 瓡
CSS:
/* CSS content property */
.element::before {
content: "\0074E1"; /* 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%A1
MD5:
1505a6ac7ce1e653606b6655e0b63df7
SHA1:
2d7f60d3a7fa22a4c650fb27338fc2715b4061d7
Base64:
55Oh