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