Unicode Finder

"ɖ" U+0256(LATIN SMALL LETTER D WITH TAIL)

ɖ
U+0256
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER D WITH TAIL

Programming

C
\u0256
JavaScript
\u0256
Java
\u0256
Json
\u0256
Python
\u0256
Perl
\x{0256}
PHP
\x{0256}
Ruby
\u{0256}
Rust
\u{256}
Go
\u0256

Web

CSS
\000256
HtmlDecimal
ɖ
HtmlHexadecimal
ɖ
Url
%C9%96

Code

MD5
165406e473f38ababa17a05696e2ef70
Sha1
abb18c91c6de38c3e312042261ce2c4670ccb199
Base64
yZY=

Exemple de Utilizare

Programming Languages

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: ɖ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000256";  /* Display: ɖ */
}

HTML Decimal:

<p>HTML decimal: &#598;</p>  <!-- Display: ɖ -->

HTML Hexadecimal:

<p>HTML hex: &#x0256;</p>  <!-- Display: ɖ -->

URL Encoding:

// ɖ URL encoding
https://unicodefinder.com/search.php?query=%C9%96

Encodings

MD5:

165406e473f38ababa17a05696e2ef70

SHA1:

abb18c91c6de38c3e312042261ce2c4670ccb199

Base64:

yZY=