C:
char c = '\uA296';
printf("%c\n", c); // Output: ꊖ
JavaScript:
const char = '\uA296';
console.log(char); // Output: ꊖ
Java:
char c = '\uA296';
System.out.println(c); // Output: ꊖ
JSON:
{"text": "\uA296"} // Value: ꊖ
Python:
char = '\uA296'
print(char) # Output: ꊖ
Perl:
my $char = "\x{A296}";
print $char; # Output: ꊖ
PHP:
$char = "\x{A296}";
echo $char; // Output: ꊖ
Ruby:
char = "\u{A296}"
puts char # Output: ꊖ
Rust:
let c = '\u{A296}';
println!("{}", c); // Output: ꊖ
Go:
char := '\uA296'
fmt.Printf("%c\n", char) // Output: ꊖ
CSS:
/* CSS content property */
.element::before {
content: "\00A296"; /* 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%8A%96
MD5:
ca2e652f78741621f292bd0467fb4463
SHA1:
5369df392e3b8280eb4589ae834b1d4a6ebcb460
Base64:
6oqW