C:
char c = '\u0192';
printf("%c\n", c); // Output: ƒ
JavaScript:
const char = '\u0192';
console.log(char); // Output: ƒ
Java:
char c = '\u0192';
System.out.println(c); // Output: ƒ
JSON:
{"text": "\u0192"} // Value: ƒ
Python:
char = '\u0192'
print(char) # Output: ƒ
Perl:
my $char = "\x{0192}";
print $char; # Output: ƒ
PHP:
$char = "\x{0192}";
echo $char; // Output: ƒ
Ruby:
char = "\u{0192}"
puts char # Output: ƒ
Rust:
let c = '\u{192}';
println!("{}", c); // Output: ƒ
Go:
char := '\u0192'
fmt.Printf("%c\n", char) // Output: ƒ
CSS:
/* CSS content property */
.element::before {
content: "\000192"; /* 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%92
MD5:
689aee5451a92c3d13f1af404fc409e5
SHA1:
f38b899fae138ea176db05270d6c190e36043a08
Base64:
xpI=