C:
char c = '\uD11F';
printf("%c\n", c); // Output: 턟
JavaScript:
const char = '\uD11F';
console.log(char); // Output: 턟
Java:
char c = '\uD11F';
System.out.println(c); // Output: 턟
JSON:
{"text": "\uD11F"} // Value: 턟
Python:
char = '\uD11F'
print(char) # Output: 턟
Perl:
my $char = "\x{D11F}";
print $char; # Output: 턟
PHP:
$char = "\x{D11F}";
echo $char; // Output: 턟
Ruby:
char = "\u{D11F}"
puts char # Output: 턟
Rust:
let c = '\u{D11F}';
println!("{}", c); // Output: 턟
Go:
char := '\uD11F'
fmt.Printf("%c\n", char) // Output: 턟
CSS:
/* CSS content property */
.element::before {
content: "\00D11F"; /* 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%84%9F
MD5:
74c5fc1766c874e32160840ee3426739
SHA1:
b7aea9ee5cb51d359ac8a42cdba51b4c80c5e882
Base64:
7YSf