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