C:
char c = '\uB55A';
printf("%c\n", c); // Output: 땚
JavaScript:
const char = '\uB55A';
console.log(char); // Output: 땚
Java:
char c = '\uB55A';
System.out.println(c); // Output: 땚
JSON:
{"text": "\uB55A"} // Value: 땚
Python:
char = '\uB55A'
print(char) # Output: 땚
Perl:
my $char = "\x{B55A}";
print $char; # Output: 땚
PHP:
$char = "\x{B55A}";
echo $char; // Output: 땚
Ruby:
char = "\u{B55A}"
puts char # Output: 땚
Rust:
let c = '\u{B55A}';
println!("{}", c); // Output: 땚
Go:
char := '\uB55A'
fmt.Printf("%c\n", char) // Output: 땚
CSS:
/* CSS content property */
.element::before {
content: "\00B55A"; /* 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=%EB%95%9A
MD5:
97689d4cdb8b48dbfbee777bf2c25b01
SHA1:
d1fbada2ed406cac22ac1b1e718c8988da7d1c4c
Base64:
65Wa