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