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