Unicode Finder

"ᶚ" U+1D9A(LATIN SMALL LETTER EZH WITH RETROFLEX HOOK)

U+1D9A
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER EZH WITH RETROFLEX HOOK

Programming

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

Web

CSS
\001D9A
HtmlDecimal
ᶚ
HtmlHexadecimal
ᶚ
Url
%E1%B6%9A

Code

MD5
aec84a711d83dd53c1c4d47b96f30f1f
Sha1
aad08397fbf610d3184ab4e98af835d35f3e6bbf
Base64
4baa

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D9A';
console.log(char);  // Output: ᶚ

Java:

char c = '\u1D9A';
System.out.println(c);  // Output: ᶚ

JSON:

{"text": "\u1D9A"}  // Value: ᶚ

Python:

char = '\u1D9A'
print(char)  # Output: ᶚ

Perl:

my $char = "\x{1D9A}";
print $char;  # Output: ᶚ

PHP:

$char = "\x{1D9A}";
echo $char;  // Output: ᶚ

Ruby:

char = "\u{1D9A}"
puts char  # Output: ᶚ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7578;</p>  <!-- Display: ᶚ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D9A;</p>  <!-- Display: ᶚ -->

URL Encoding:

// ᶚ URL encoding
https://unicodefinder.com/search.php?query=%E1%B6%9A

Encodings

MD5:

aec84a711d83dd53c1c4d47b96f30f1f

SHA1:

aad08397fbf610d3184ab4e98af835d35f3e6bbf

Base64:

4baa