C:
char c = '\uD1EE';
printf("%c\n", c); // Output: 퇮
JavaScript:
const char = '\uD1EE';
console.log(char); // Output: 퇮
Java:
char c = '\uD1EE';
System.out.println(c); // Output: 퇮
JSON:
{"text": "\uD1EE"} // Value: 퇮
Python:
char = '\uD1EE'
print(char) # Output: 퇮
Perl:
my $char = "\x{D1EE}";
print $char; # Output: 퇮
PHP:
$char = "\x{D1EE}";
echo $char; // Output: 퇮
Ruby:
char = "\u{D1EE}"
puts char # Output: 퇮
Rust:
let c = '\u{D1EE}';
println!("{}", c); // Output: 퇮
Go:
char := '\uD1EE'
fmt.Printf("%c\n", char) // Output: 퇮
CSS:
/* CSS content property */
.element::before {
content: "\00D1EE"; /* 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=%ED%87%AE
MD5:
557a0dd75953df9be64a9bdabcf354bb
SHA1:
e610d420b695de3cb8b6d1f56dbc02408dc3a8a5
Base64:
7Yeu