C:
char c = '\u0279';
printf("%c\n", c); // Output: ɹ
JavaScript:
const char = '\u0279';
console.log(char); // Output: ɹ
Java:
char c = '\u0279';
System.out.println(c); // Output: ɹ
JSON:
{"text": "\u0279"} // Value: ɹ
Python:
char = '\u0279'
print(char) # Output: ɹ
Perl:
my $char = "\x{0279}";
print $char; # Output: ɹ
PHP:
$char = "\x{0279}";
echo $char; // Output: ɹ
Ruby:
char = "\u{0279}"
puts char # Output: ɹ
Rust:
let c = '\u{279}';
println!("{}", c); // Output: ɹ
Go:
char := '\u0279'
fmt.Printf("%c\n", char) // Output: ɹ
CSS:
/* CSS content property */
.element::before {
content: "\000279"; /* 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%B9
MD5:
85033ec324bb64d777d5030e55d5c950
SHA1:
49c31a08447dccac6431c75ebf49c5fd6b0206ea
Base64:
ybk=