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