C:
char c = '\uB9AC';
printf("%c\n", c); // Output: 리
JavaScript:
const char = '\uB9AC';
console.log(char); // Output: 리
Java:
char c = '\uB9AC';
System.out.println(c); // Output: 리
JSON:
{"text": "\uB9AC"} // Value: 리
Python:
char = '\uB9AC'
print(char) # Output: 리
Perl:
my $char = "\x{B9AC}";
print $char; # Output: 리
PHP:
$char = "\x{B9AC}";
echo $char; // Output: 리
Ruby:
char = "\u{B9AC}"
puts char # Output: 리
Rust:
let c = '\u{B9AC}';
println!("{}", c); // Output: 리
Go:
char := '\uB9AC'
fmt.Printf("%c\n", char) // Output: 리
CSS:
/* CSS content property */
.element::before {
content: "\00B9AC"; /* 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%A6%AC
MD5:
a5d40b464f914b1b4c0aab2c7ba3b7c0
SHA1:
ef9deca2adf84afb7114ea3e3a9cd42d4496bff8
Base64:
66as