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