Unicode Finder

"ᶍ" U+1D8D(LATIN SMALL LETTER X WITH PALATAL HOOK)

U+1D8D
Nazwa Bloku
Phonetic Extensions Supplement
Nazwa
LATIN SMALL LETTER X WITH PALATAL HOOK

Programming

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

Web

CSS
\001D8D
HtmlDecimal
ᶍ
HtmlHexadecimal
ᶍ
Url
%E1%B6%8D

Code

MD5
cf9568a57a772f994a533b4fd1d83233
Sha1
23eb83d7cbb567ed1ed6110229897e15e261e622
Base64
4baN

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D8D';
console.log(char);  // Output: ᶍ

Java:

char c = '\u1D8D';
System.out.println(c);  // Output: ᶍ

JSON:

{"text": "\u1D8D"}  // Value: ᶍ

Python:

char = '\u1D8D'
print(char)  # Output: ᶍ

Perl:

my $char = "\x{1D8D}";
print $char;  # Output: ᶍ

PHP:

$char = "\x{1D8D}";
echo $char;  // Output: ᶍ

Ruby:

char = "\u{1D8D}"
puts char  # Output: ᶍ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7565;</p>  <!-- Display: ᶍ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D8D;</p>  <!-- Display: ᶍ -->

URL Encoding:

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

Encodings

MD5:

cf9568a57a772f994a533b4fd1d83233

SHA1:

23eb83d7cbb567ed1ed6110229897e15e261e622

Base64:

4baN