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