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