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