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