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