C:
char c = '\uB8C0';
printf("%c\n", c); // Output: 룀
JavaScript:
const char = '\uB8C0';
console.log(char); // Output: 룀
Java:
char c = '\uB8C0';
System.out.println(c); // Output: 룀
JSON:
{"text": "\uB8C0"} // Value: 룀
Python:
char = '\uB8C0'
print(char) # Output: 룀
Perl:
my $char = "\x{B8C0}";
print $char; # Output: 룀
PHP:
$char = "\x{B8C0}";
echo $char; // Output: 룀
Ruby:
char = "\u{B8C0}"
puts char # Output: 룀
Rust:
let c = '\u{B8C0}';
println!("{}", c); // Output: 룀
Go:
char := '\uB8C0'
fmt.Printf("%c\n", char) // Output: 룀
CSS:
/* CSS content property */
.element::before {
content: "\00B8C0"; /* 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%A3%80
MD5:
3f26bb07d651bcd5c386d0745f1a56f0
SHA1:
927d948ffe1827eaaab05a7a4d6ed766dd267afc
Base64:
66OA