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