C:
char c = '\u0277';
printf("%c\n", c); // Output: ɷ
JavaScript:
const char = '\u0277';
console.log(char); // Output: ɷ
Java:
char c = '\u0277';
System.out.println(c); // Output: ɷ
JSON:
{"text": "\u0277"} // Value: ɷ
Python:
char = '\u0277'
print(char) # Output: ɷ
Perl:
my $char = "\x{0277}";
print $char; # Output: ɷ
PHP:
$char = "\x{0277}";
echo $char; // Output: ɷ
Ruby:
char = "\u{0277}"
puts char # Output: ɷ
Rust:
let c = '\u{277}';
println!("{}", c); // Output: ɷ
Go:
char := '\u0277'
fmt.Printf("%c\n", char) // Output: ɷ
CSS:
/* CSS content property */
.element::before {
content: "\000277"; /* 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%B7
MD5:
cbe4ceca50a47feaa6822564fee4adae
SHA1:
158243bb6fbe50f401c41a7dddf5553de78c7ca3
Base64:
ybc=