C:
char c = '\u01E0';
printf("%c\n", c); // Output: Ǡ
JavaScript:
const char = '\u01E0';
console.log(char); // Output: Ǡ
Java:
char c = '\u01E0';
System.out.println(c); // Output: Ǡ
JSON:
{"text": "\u01E0"} // Value: Ǡ
Python:
char = '\u01E0'
print(char) # Output: Ǡ
Perl:
my $char = "\x{01E0}";
print $char; # Output: Ǡ
PHP:
$char = "\x{01E0}";
echo $char; // Output: Ǡ
Ruby:
char = "\u{01E0}"
puts char # Output: Ǡ
Rust:
let c = '\u{1E0}';
println!("{}", c); // Output: Ǡ
Go:
char := '\u01E0'
fmt.Printf("%c\n", char) // Output: Ǡ
CSS:
/* CSS content property */
.element::before {
content: "\0001E0"; /* 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=%C7%A0
MD5:
7f92bd35e12052ae7c33c2539618b315
SHA1:
f8237b75dfb8e26125744585b582ee3da9f0ee34
Base64:
x6A=