C:
char c = '\u0278';
printf("%c\n", c); // Output: ɸ
JavaScript:
const char = '\u0278';
console.log(char); // Output: ɸ
Java:
char c = '\u0278';
System.out.println(c); // Output: ɸ
JSON:
{"text": "\u0278"} // Value: ɸ
Python:
char = '\u0278'
print(char) # Output: ɸ
Perl:
my $char = "\x{0278}";
print $char; # Output: ɸ
PHP:
$char = "\x{0278}";
echo $char; // Output: ɸ
Ruby:
char = "\u{0278}"
puts char # Output: ɸ
Rust:
let c = '\u{278}';
println!("{}", c); // Output: ɸ
Go:
char := '\u0278'
fmt.Printf("%c\n", char) // Output: ɸ
CSS:
/* CSS content property */
.element::before {
content: "\000278"; /* 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=%C9%B8
MD5:
14d92dfbe5ca122a3b565e5d63473054
SHA1:
97ea28a832b2b50e33f4045951e1aecd31afc31f
Base64:
ybg=