C:
char c = '\u2C90';
printf("%c\n", c); // Output: Ⲑ
JavaScript:
const char = '\u2C90';
console.log(char); // Output: Ⲑ
Java:
char c = '\u2C90';
System.out.println(c); // Output: Ⲑ
JSON:
{"text": "\u2C90"} // Value: Ⲑ
Python:
char = '\u2C90'
print(char) # Output: Ⲑ
Perl:
my $char = "\x{2C90}";
print $char; # Output: Ⲑ
PHP:
$char = "\x{2C90}";
echo $char; // Output: Ⲑ
Ruby:
char = "\u{2C90}"
puts char # Output: Ⲑ
Rust:
let c = '\u{2C90}';
println!("{}", c); // Output: Ⲑ
Go:
char := '\u2C90'
fmt.Printf("%c\n", char) // Output: Ⲑ
CSS:
/* CSS content property */
.element::before {
content: "\002C90"; /* 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=%E2%B2%90
MD5:
e1a4ecafdef622363e96a9dfc9e5a4b4
SHA1:
18a8cb4d5470398f7220fe922eeb82e708bcf909
Base64:
4rKQ