C:
char c = '\u77D4';
printf("%c\n", c); // Output: 矔
JavaScript:
const char = '\u77D4';
console.log(char); // Output: 矔
Java:
char c = '\u77D4';
System.out.println(c); // Output: 矔
JSON:
{"text": "\u77D4"} // Value: 矔
Python:
char = '\u77D4'
print(char) # Output: 矔
Perl:
my $char = "\x{77D4}";
print $char; # Output: 矔
PHP:
$char = "\x{77D4}";
echo $char; // Output: 矔
Ruby:
char = "\u{77D4}"
puts char # Output: 矔
Rust:
let c = '\u{77D4}';
println!("{}", c); // Output: 矔
Go:
char := '\u77D4'
fmt.Printf("%c\n", char) // Output: 矔
CSS:
/* CSS content property */
.element::before {
content: "\0077D4"; /* 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%9F%94
MD5:
aec5adb701750f1a9d1465e61e43d9f6
SHA1:
2f7fde79f21496f005b938c186f0831ef04635e5
Base64:
55+U