C:
char c = '\uAC40';
printf("%c\n", c); // Output: 걀
JavaScript:
const char = '\uAC40';
console.log(char); // Output: 걀
Java:
char c = '\uAC40';
System.out.println(c); // Output: 걀
JSON:
{"text": "\uAC40"} // Value: 걀
Python:
char = '\uAC40'
print(char) # Output: 걀
Perl:
my $char = "\x{AC40}";
print $char; # Output: 걀
PHP:
$char = "\x{AC40}";
echo $char; // Output: 걀
Ruby:
char = "\u{AC40}"
puts char # Output: 걀
Rust:
let c = '\u{AC40}';
println!("{}", c); // Output: 걀
Go:
char := '\uAC40'
fmt.Printf("%c\n", char) // Output: 걀
CSS:
/* CSS content property */
.element::before {
content: "\00AC40"; /* 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%B1%80
MD5:
3d6b5d745bdf2da9bf0fafba4d0364ca
SHA1:
4394eb2d52e417c9efaf4dfc6145b177e36beb41
Base64:
6rGA