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