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