C:
char c = '\u0256';
printf("%c\n", c); // Output: ɖ
JavaScript:
const char = '\u0256';
console.log(char); // Output: ɖ
Java:
char c = '\u0256';
System.out.println(c); // Output: ɖ
JSON:
{"text": "\u0256"} // Value: ɖ
Python:
char = '\u0256'
print(char) # Output: ɖ
Perl:
my $char = "\x{0256}";
print $char; # Output: ɖ
PHP:
$char = "\x{0256}";
echo $char; // Output: ɖ
Ruby:
char = "\u{0256}"
puts char # Output: ɖ
Rust:
let c = '\u{256}';
println!("{}", c); // Output: ɖ
Go:
char := '\u0256'
fmt.Printf("%c\n", char) // Output: ɖ
CSS:
/* CSS content property */
.element::before {
content: "\000256"; /* 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%96
MD5:
165406e473f38ababa17a05696e2ef70
SHA1:
abb18c91c6de38c3e312042261ce2c4670ccb199
Base64:
yZY=