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