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