C:
char c = '\uD223';
printf("%c\n", c); // Output: 툣
JavaScript:
const char = '\uD223';
console.log(char); // Output: 툣
Java:
char c = '\uD223';
System.out.println(c); // Output: 툣
JSON:
{"text": "\uD223"} // Value: 툣
Python:
char = '\uD223'
print(char) # Output: 툣
Perl:
my $char = "\x{D223}";
print $char; # Output: 툣
PHP:
$char = "\x{D223}";
echo $char; // Output: 툣
Ruby:
char = "\u{D223}"
puts char # Output: 툣
Rust:
let c = '\u{D223}';
println!("{}", c); // Output: 툣
Go:
char := '\uD223'
fmt.Printf("%c\n", char) // Output: 툣
CSS:
/* CSS content property */
.element::before {
content: "\00D223"; /* 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%88%A3
MD5:
3fa85e99dc283f0da7353fa8c22a6760
SHA1:
5ad4ebcd65a52e97c70e995b76074d4491c93ff6
Base64:
7Yij