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