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