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