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