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