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