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