Unicode Finder

"ᶀ" U+1D80(LATIN SMALL LETTER B WITH PALATAL HOOK)

U+1D80
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER B WITH PALATAL HOOK

Programming

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

Web

CSS
\001D80
HtmlDecimal
ᶀ
HtmlHexadecimal
ᶀ
Url
%E1%B6%80

Code

MD5
82ac8bbc6fcc219a79b123c67ce07e8f
Sha1
1c9257f1b5807affe567490c17bcdb87803d7fe7
Base64
4baA

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D80';
console.log(char);  // Output: ᶀ

Java:

char c = '\u1D80';
System.out.println(c);  // Output: ᶀ

JSON:

{"text": "\u1D80"}  // Value: ᶀ

Python:

char = '\u1D80'
print(char)  # Output: ᶀ

Perl:

my $char = "\x{1D80}";
print $char;  # Output: ᶀ

PHP:

$char = "\x{1D80}";
echo $char;  // Output: ᶀ

Ruby:

char = "\u{1D80}"
puts char  # Output: ᶀ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7552;</p>  <!-- Display: ᶀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D80;</p>  <!-- Display: ᶀ -->

URL Encoding:

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

Encodings

MD5:

82ac8bbc6fcc219a79b123c67ce07e8f

SHA1:

1c9257f1b5807affe567490c17bcdb87803d7fe7

Base64:

4baA