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