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