C:
char c = '\uD1EC';
printf("%c\n", c); // Output: 퇬
JavaScript:
const char = '\uD1EC';
console.log(char); // Output: 퇬
Java:
char c = '\uD1EC';
System.out.println(c); // Output: 퇬
JSON:
{"text": "\uD1EC"} // Value: 퇬
Python:
char = '\uD1EC'
print(char) # Output: 퇬
Perl:
my $char = "\x{D1EC}";
print $char; # Output: 퇬
PHP:
$char = "\x{D1EC}";
echo $char; // Output: 퇬
Ruby:
char = "\u{D1EC}"
puts char # Output: 퇬
Rust:
let c = '\u{D1EC}';
println!("{}", c); // Output: 퇬
Go:
char := '\uD1EC'
fmt.Printf("%c\n", char) // Output: 퇬
CSS:
/* CSS content property */
.element::before {
content: "\00D1EC"; /* 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%AC
MD5:
799d2dede85e3695347f40b1e00b2f32
SHA1:
be7a1357d5300e1fd96aaabbe9095ae655ae7ce0
Base64:
7Yes