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