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