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