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