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