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