Unicode Finder

"ᶓ" U+1D93(LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK)

U+1D93
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK

Programming

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

Web

CSS
\001D93
HtmlDecimal
ᶓ
HtmlHexadecimal
ᶓ
Url
%E1%B6%93

Code

MD5
0e6bcac066865b85c46ae4b2ec6a84dc
Sha1
618a456b1ae9485ed6ff47e043c0274bed50f6a3
Base64
4baT

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D93';
console.log(char);  // Output: ᶓ

Java:

char c = '\u1D93';
System.out.println(c);  // Output: ᶓ

JSON:

{"text": "\u1D93"}  // Value: ᶓ

Python:

char = '\u1D93'
print(char)  # Output: ᶓ

Perl:

my $char = "\x{1D93}";
print $char;  # Output: ᶓ

PHP:

$char = "\x{1D93}";
echo $char;  // Output: ᶓ

Ruby:

char = "\u{1D93}"
puts char  # Output: ᶓ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7571;</p>  <!-- Display: ᶓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D93;</p>  <!-- Display: ᶓ -->

URL Encoding:

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

Encodings

MD5:

0e6bcac066865b85c46ae4b2ec6a84dc

SHA1:

618a456b1ae9485ed6ff47e043c0274bed50f6a3

Base64:

4baT