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