C:
char c = '\uD1A2';
printf("%c\n", c); // Output: 톢
JavaScript:
const char = '\uD1A2';
console.log(char); // Output: 톢
Java:
char c = '\uD1A2';
System.out.println(c); // Output: 톢
JSON:
{"text": "\uD1A2"} // Value: 톢
Python:
char = '\uD1A2'
print(char) # Output: 톢
Perl:
my $char = "\x{D1A2}";
print $char; # Output: 톢
PHP:
$char = "\x{D1A2}";
echo $char; // Output: 톢
Ruby:
char = "\u{D1A2}"
puts char # Output: 톢
Rust:
let c = '\u{D1A2}';
println!("{}", c); // Output: 톢
Go:
char := '\uD1A2'
fmt.Printf("%c\n", char) // Output: 톢
CSS:
/* CSS content property */
.element::before {
content: "\00D1A2"; /* 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%A2
MD5:
443abaa970418f6a918ac97a3f8f45cd
SHA1:
05406102ef3f7d5e94c88931b4d076171566143b
Base64:
7Yai