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