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