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