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