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