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