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