C:
char c = '\u1A43';
printf("%c\n", c); // Output: ᩃ
JavaScript:
const char = '\u1A43';
console.log(char); // Output: ᩃ
Java:
char c = '\u1A43';
System.out.println(c); // Output: ᩃ
JSON:
{"text": "\u1A43"} // Value: ᩃ
Python:
char = '\u1A43'
print(char) # Output: ᩃ
Perl:
my $char = "\x{1A43}";
print $char; # Output: ᩃ
PHP:
$char = "\x{1A43}";
echo $char; // Output: ᩃ
Ruby:
char = "\u{1A43}"
puts char # Output: ᩃ
Rust:
let c = '\u{1A43}';
println!("{}", c); // Output: ᩃ
Go:
char := '\u1A43'
fmt.Printf("%c\n", char) // Output: ᩃ
CSS:
/* CSS content property */
.element::before {
content: "\001A43"; /* 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=%E1%A9%83
MD5:
2fc22afe2674082a1e698a0afb334e06
SHA1:
a3c9afea2d8a6e770b0b9cd21c48369d18e31bdc
Base64:
4amD