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