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