C:
char c = '\u0191';
printf("%c\n", c); // Output: Ƒ
JavaScript:
const char = '\u0191';
console.log(char); // Output: Ƒ
Java:
char c = '\u0191';
System.out.println(c); // Output: Ƒ
JSON:
{"text": "\u0191"} // Value: Ƒ
Python:
char = '\u0191'
print(char) # Output: Ƒ
Perl:
my $char = "\x{0191}";
print $char; # Output: Ƒ
PHP:
$char = "\x{0191}";
echo $char; // Output: Ƒ
Ruby:
char = "\u{0191}"
puts char # Output: Ƒ
Rust:
let c = '\u{191}';
println!("{}", c); // Output: Ƒ
Go:
char := '\u0191'
fmt.Printf("%c\n", char) // Output: Ƒ
CSS:
/* CSS content property */
.element::before {
content: "\000191"; /* 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=%C6%91
MD5:
fcf85d51d50015fad8279942cb35aa10
SHA1:
273603de145a64e28a9687bef014776ca5c955a2
Base64:
xpE=