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