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