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