Unicode Finder

"ᶔ" U+1D94(LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK)

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

Programming

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

Web

CSS
\001D94
HtmlDecimal
ᶔ
HtmlHexadecimal
ᶔ
Url
%E1%B6%94

Code

MD5
9d870777c52c230d13fc2a44df029a35
Sha1
194a62b0b3793fbce35b7ef2e737e75489890693
Base64
4baU

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D94';
console.log(char);  // Output: ᶔ

Java:

char c = '\u1D94';
System.out.println(c);  // Output: ᶔ

JSON:

{"text": "\u1D94"}  // Value: ᶔ

Python:

char = '\u1D94'
print(char)  # Output: ᶔ

Perl:

my $char = "\x{1D94}";
print $char;  # Output: ᶔ

PHP:

$char = "\x{1D94}";
echo $char;  // Output: ᶔ

Ruby:

char = "\u{1D94}"
puts char  # Output: ᶔ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7572;</p>  <!-- Display: ᶔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D94;</p>  <!-- Display: ᶔ -->

URL Encoding:

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

Encodings

MD5:

9d870777c52c230d13fc2a44df029a35

SHA1:

194a62b0b3793fbce35b7ef2e737e75489890693

Base64:

4baU