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