C:
char c = '\uAE54';
printf("%c\n", c); // Output: 깔
JavaScript:
const char = '\uAE54';
console.log(char); // Output: 깔
Java:
char c = '\uAE54';
System.out.println(c); // Output: 깔
JSON:
{"text": "\uAE54"} // Value: 깔
Python:
char = '\uAE54'
print(char) # Output: 깔
Perl:
my $char = "\x{AE54}";
print $char; # Output: 깔
PHP:
$char = "\x{AE54}";
echo $char; // Output: 깔
Ruby:
char = "\u{AE54}"
puts char # Output: 깔
Rust:
let c = '\u{AE54}';
println!("{}", c); // Output: 깔
Go:
char := '\uAE54'
fmt.Printf("%c\n", char) // Output: 깔
CSS:
/* CSS content property */
.element::before {
content: "\00AE54"; /* 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=%EA%B9%94
MD5:
17c61de90dcd33f7fc597e11a35fbb61
SHA1:
8043d74c4da70a692c0a2957c615f8dd80143fd0
Base64:
6rmU