C:
char c = '\uB784';
printf("%c\n", c); // Output: 랄
JavaScript:
const char = '\uB784';
console.log(char); // Output: 랄
Java:
char c = '\uB784';
System.out.println(c); // Output: 랄
JSON:
{"text": "\uB784"} // Value: 랄
Python:
char = '\uB784'
print(char) # Output: 랄
Perl:
my $char = "\x{B784}";
print $char; # Output: 랄
PHP:
$char = "\x{B784}";
echo $char; // Output: 랄
Ruby:
char = "\u{B784}"
puts char # Output: 랄
Rust:
let c = '\u{B784}';
println!("{}", c); // Output: 랄
Go:
char := '\uB784'
fmt.Printf("%c\n", char) // Output: 랄
CSS:
/* CSS content property */
.element::before {
content: "\00B784"; /* 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%9E%84
MD5:
d8c538cb2d71d7c6f3fc8630254e67dc
SHA1:
60bf6bafde5fc1b4d289ca4e9d06c07143bca1d2
Base64:
656E