C:
char c = '\uD0C0';
printf("%c\n", c); // Output: 타
JavaScript:
const char = '\uD0C0';
console.log(char); // Output: 타
Java:
char c = '\uD0C0';
System.out.println(c); // Output: 타
JSON:
{"text": "\uD0C0"} // Value: 타
Python:
char = '\uD0C0'
print(char) # Output: 타
Perl:
my $char = "\x{D0C0}";
print $char; # Output: 타
PHP:
$char = "\x{D0C0}";
echo $char; // Output: 타
Ruby:
char = "\u{D0C0}"
puts char # Output: 타
Rust:
let c = '\u{D0C0}';
println!("{}", c); // Output: 타
Go:
char := '\uD0C0'
fmt.Printf("%c\n", char) // Output: 타
CSS:
/* CSS content property */
.element::before {
content: "\00D0C0"; /* 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%83%80
MD5:
87800c20836cd0d74c789ef7f7023dd1
SHA1:
8198fd54dd02ae6c967b423caf6d1eea70baee1f
Base64:
7YOA