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