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