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