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