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