Unicode Finder

"ᶋ" U+1D8B(LATIN SMALL LETTER ESH WITH PALATAL HOOK)

U+1D8B
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER ESH WITH PALATAL HOOK

Programming

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

Web

CSS
\001D8B
HtmlDecimal
ᶋ
HtmlHexadecimal
ᶋ
Url
%E1%B6%8B

Code

MD5
ee326c86cae1be8ecd6119696bcfd28c
Sha1
def61adb7abde3f15bc90b2f7f6d4eebe52b15ba
Base64
4baL

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D8B';
console.log(char);  // Output: ᶋ

Java:

char c = '\u1D8B';
System.out.println(c);  // Output: ᶋ

JSON:

{"text": "\u1D8B"}  // Value: ᶋ

Python:

char = '\u1D8B'
print(char)  # Output: ᶋ

Perl:

my $char = "\x{1D8B}";
print $char;  # Output: ᶋ

PHP:

$char = "\x{1D8B}";
echo $char;  // Output: ᶋ

Ruby:

char = "\u{1D8B}"
puts char  # Output: ᶋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7563;</p>  <!-- Display: ᶋ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D8B;</p>  <!-- Display: ᶋ -->

URL Encoding:

// ᶋ URL encoding
https://unicodefinder.com/search.php?query=%E1%B6%8B

Encodings

MD5:

ee326c86cae1be8ecd6119696bcfd28c

SHA1:

def61adb7abde3f15bc90b2f7f6d4eebe52b15ba

Base64:

4baL