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