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