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