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