C:
char c = '\uAB0D';
printf("%c\n", c); // Output: ꬍ
JavaScript:
const char = '\uAB0D';
console.log(char); // Output: ꬍ
Java:
char c = '\uAB0D';
System.out.println(c); // Output: ꬍ
JSON:
{"text": "\uAB0D"} // Value: ꬍ
Python:
char = '\uAB0D'
print(char) # Output: ꬍ
Perl:
my $char = "\x{AB0D}";
print $char; # Output: ꬍ
PHP:
$char = "\x{AB0D}";
echo $char; // Output: ꬍ
Ruby:
char = "\u{AB0D}"
puts char # Output: ꬍ
Rust:
let c = '\u{AB0D}';
println!("{}", c); // Output: ꬍ
Go:
char := '\uAB0D'
fmt.Printf("%c\n", char) // Output: ꬍ
CSS:
/* CSS content property */
.element::before {
content: "\00AB0D"; /* 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%AC%8D
MD5:
11dc2008e34856db39f82086c1a70066
SHA1:
4687d7773d232bc6b48ffff629dd7c64ad16cdfc
Base64:
6qyN