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