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