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