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