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