C:
char c = '\uD16A';
printf("%c\n", c); // Output: 텪
JavaScript:
const char = '\uD16A';
console.log(char); // Output: 텪
Java:
char c = '\uD16A';
System.out.println(c); // Output: 텪
JSON:
{"text": "\uD16A"} // Value: 텪
Python:
char = '\uD16A'
print(char) # Output: 텪
Perl:
my $char = "\x{D16A}";
print $char; # Output: 텪
PHP:
$char = "\x{D16A}";
echo $char; // Output: 텪
Ruby:
char = "\u{D16A}"
puts char # Output: 텪
Rust:
let c = '\u{D16A}';
println!("{}", c); // Output: 텪
Go:
char := '\uD16A'
fmt.Printf("%c\n", char) // Output: 텪
CSS:
/* CSS content property */
.element::before {
content: "\00D16A"; /* 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%85%AA
MD5:
2a25cdf2d5b71f5f02436d972347b070
SHA1:
800b465216e91054709a1c080277d4e4ec413525
Base64:
7YWq