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