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