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