Unicode Finder

"ᶇ" U+1D87(LATIN SMALL LETTER N WITH PALATAL HOOK)

U+1D87
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER N WITH PALATAL HOOK

Programming

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

Web

CSS
\001D87
HtmlDecimal
ᶇ
HtmlHexadecimal
ᶇ
Url
%E1%B6%87

Code

MD5
bcf1be75fa028d1d27779e4f1c79d7b3
Sha1
59745d0bf1804b5f68ed31131e40da616458cb1a
Base64
4baH

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D87';
console.log(char);  // Output: ᶇ

Java:

char c = '\u1D87';
System.out.println(c);  // Output: ᶇ

JSON:

{"text": "\u1D87"}  // Value: ᶇ

Python:

char = '\u1D87'
print(char)  # Output: ᶇ

Perl:

my $char = "\x{1D87}";
print $char;  # Output: ᶇ

PHP:

$char = "\x{1D87}";
echo $char;  // Output: ᶇ

Ruby:

char = "\u{1D87}"
puts char  # Output: ᶇ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7559;</p>  <!-- Display: ᶇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D87;</p>  <!-- Display: ᶇ -->

URL Encoding:

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

Encodings

MD5:

bcf1be75fa028d1d27779e4f1c79d7b3

SHA1:

59745d0bf1804b5f68ed31131e40da616458cb1a

Base64:

4baH