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