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