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