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