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