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