C:
char c = '\u0257';
printf("%c\n", c); // Output: ɗ
JavaScript:
const char = '\u0257';
console.log(char); // Output: ɗ
Java:
char c = '\u0257';
System.out.println(c); // Output: ɗ
JSON:
{"text": "\u0257"} // Value: ɗ
Python:
char = '\u0257'
print(char) # Output: ɗ
Perl:
my $char = "\x{0257}";
print $char; # Output: ɗ
PHP:
$char = "\x{0257}";
echo $char; // Output: ɗ
Ruby:
char = "\u{0257}"
puts char # Output: ɗ
Rust:
let c = '\u{257}';
println!("{}", c); // Output: ɗ
Go:
char := '\u0257'
fmt.Printf("%c\n", char) // Output: ɗ
CSS:
/* CSS content property */
.element::before {
content: "\000257"; /* 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%97
MD5:
1490e5ce8591bc7851f6434220b81d60
SHA1:
52ed6bee3e6aaf0b6f5cb23d0f4dc1884bf973a4
Base64:
yZc=