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