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