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