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