C:
char c = '\uD1AB';
printf("%c\n", c); // Output: 톫
JavaScript:
const char = '\uD1AB';
console.log(char); // Output: 톫
Java:
char c = '\uD1AB';
System.out.println(c); // Output: 톫
JSON:
{"text": "\uD1AB"} // Value: 톫
Python:
char = '\uD1AB'
print(char) # Output: 톫
Perl:
my $char = "\x{D1AB}";
print $char; # Output: 톫
PHP:
$char = "\x{D1AB}";
echo $char; // Output: 톫
Ruby:
char = "\u{D1AB}"
puts char # Output: 톫
Rust:
let c = '\u{D1AB}';
println!("{}", c); // Output: 톫
Go:
char := '\uD1AB'
fmt.Printf("%c\n", char) // Output: 톫
CSS:
/* CSS content property */
.element::before {
content: "\00D1AB"; /* 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%86%AB
MD5:
1fc3b33bf340e060a86dfefef50ed0e3
SHA1:
38b0ce453d0db3c70db9d6d217737e79ab7a8d06
Base64:
7Yar