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