C:
char c = '\uB85F';
printf("%c\n", c); // Output: 롟
JavaScript:
const char = '\uB85F';
console.log(char); // Output: 롟
Java:
char c = '\uB85F';
System.out.println(c); // Output: 롟
JSON:
{"text": "\uB85F"} // Value: 롟
Python:
char = '\uB85F'
print(char) # Output: 롟
Perl:
my $char = "\x{B85F}";
print $char; # Output: 롟
PHP:
$char = "\x{B85F}";
echo $char; // Output: 롟
Ruby:
char = "\u{B85F}"
puts char # Output: 롟
Rust:
let c = '\u{B85F}';
println!("{}", c); // Output: 롟
Go:
char := '\uB85F'
fmt.Printf("%c\n", char) // Output: 롟
CSS:
/* CSS content property */
.element::before {
content: "\00B85F"; /* 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%9F
MD5:
4472d5750a047e8ae94d2a82c041f509
SHA1:
64e8b7c6d3dabb34c76f08e6023ec682ca6768fc
Base64:
66Gf