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