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