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