C:
char c = '\uAD53';
printf("%c\n", c); // Output: 굓
JavaScript:
const char = '\uAD53';
console.log(char); // Output: 굓
Java:
char c = '\uAD53';
System.out.println(c); // Output: 굓
JSON:
{"text": "\uAD53"} // Value: 굓
Python:
char = '\uAD53'
print(char) # Output: 굓
Perl:
my $char = "\x{AD53}";
print $char; # Output: 굓
PHP:
$char = "\x{AD53}";
echo $char; // Output: 굓
Ruby:
char = "\u{AD53}"
puts char # Output: 굓
Rust:
let c = '\u{AD53}';
println!("{}", c); // Output: 굓
Go:
char := '\uAD53'
fmt.Printf("%c\n", char) // Output: 굓
CSS:
/* CSS content property */
.element::before {
content: "\00AD53"; /* 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%B5%93
MD5:
1a3c5138192fa777118568bff82a8e51
SHA1:
26efe2607f79603596d7854d95f01de8e4911063
Base64:
6rWT