Unicode Finder

"ᶑ" U+1D91(LATIN SMALL LETTER D WITH HOOK AND TAIL)

U+1D91
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER D WITH HOOK AND TAIL

Programming

C
\u1D91
JavaScript
\u1D91
Java
\u1D91
Json
\u1D91
Python
\u1D91
Perl
\x{1D91}
PHP
\x{1D91}
Ruby
\u{1D91}
Rust
\u{1D91}
Go
\u1D91

Web

CSS
\001D91
HtmlDecimal
ᶑ
HtmlHexadecimal
ᶑ
Url
%E1%B6%91

Code

MD5
1c8c4fa53fd3e2ee44cd901dc7ed8a0c
Sha1
29a613c223e20cedc2a0aedeed36217c361b64ce
Base64
4baR

Przykłady Użycia

Programming Languages

C:

char c = '\u1D91';
printf("%c\n", c);  // Output: ᶑ

JavaScript:

const char = '\u1D91';
console.log(char);  // Output: ᶑ

Java:

char c = '\u1D91';
System.out.println(c);  // Output: ᶑ

JSON:

{"text": "\u1D91"}  // Value: ᶑ

Python:

char = '\u1D91'
print(char)  # Output: ᶑ

Perl:

my $char = "\x{1D91}";
print $char;  # Output: ᶑ

PHP:

$char = "\x{1D91}";
echo $char;  // Output: ᶑ

Ruby:

char = "\u{1D91}"
puts char  # Output: ᶑ

Rust:

let c = '\u{1D91}';
println!("{}", c);  // Output: ᶑ

Go:

char := '\u1D91'
fmt.Printf("%c\n", char)  // Output: ᶑ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001D91";  /* Display: ᶑ */
}

HTML Decimal:

<p>HTML decimal: &#7569;</p>  <!-- Display: ᶑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D91;</p>  <!-- Display: ᶑ -->

URL Encoding:

// ᶑ URL encoding
https://unicodefinder.com/search.php?query=%E1%B6%91

Encodings

MD5:

1c8c4fa53fd3e2ee44cd901dc7ed8a0c

SHA1:

29a613c223e20cedc2a0aedeed36217c361b64ce

Base64:

4baR