C:
char c = '\uAB43';
printf("%c\n", c); // Output: ꭃ
JavaScript:
const char = '\uAB43';
console.log(char); // Output: ꭃ
Java:
char c = '\uAB43';
System.out.println(c); // Output: ꭃ
JSON:
{"text": "\uAB43"} // Value: ꭃ
Python:
char = '\uAB43'
print(char) # Output: ꭃ
Perl:
my $char = "\x{AB43}";
print $char; # Output: ꭃ
PHP:
$char = "\x{AB43}";
echo $char; // Output: ꭃ
Ruby:
char = "\u{AB43}"
puts char # Output: ꭃ
Rust:
let c = '\u{AB43}';
println!("{}", c); // Output: ꭃ
Go:
char := '\uAB43'
fmt.Printf("%c\n", char) // Output: ꭃ
CSS:
/* CSS content property */
.element::before {
content: "\00AB43"; /* 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%AD%83
MD5:
25496581d3873ab696aab9323ea06fa4
SHA1:
aca78e3bb23025da2c92e96650ee8cbf902b3581
Base64:
6q2D