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