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