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