Unicode Finder

"ᶏ" U+1D8F(LATIN SMALL LETTER A WITH RETROFLEX HOOK)

U+1D8F
שם בלוק
Phonetic Extensions Supplement
שם
LATIN SMALL LETTER A WITH RETROFLEX HOOK

Programming

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

Web

CSS
\001D8F
HtmlDecimal
ᶏ
HtmlHexadecimal
ᶏ
Url
%E1%B6%8F

Code

MD5
a2f3e72ec4c28015e740d16fed39fc1f
Sha1
f3dfccb19805b5f12a7d11dba6fda855a2098263
Base64
4baP

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1D8F';
console.log(char);  // Output: ᶏ

Java:

char c = '\u1D8F';
System.out.println(c);  // Output: ᶏ

JSON:

{"text": "\u1D8F"}  // Value: ᶏ

Python:

char = '\u1D8F'
print(char)  # Output: ᶏ

Perl:

my $char = "\x{1D8F}";
print $char;  # Output: ᶏ

PHP:

$char = "\x{1D8F}";
echo $char;  // Output: ᶏ

Ruby:

char = "\u{1D8F}"
puts char  # Output: ᶏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7567;</p>  <!-- Display: ᶏ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D8F;</p>  <!-- Display: ᶏ -->

URL Encoding:

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

Encodings

MD5:

a2f3e72ec4c28015e740d16fed39fc1f

SHA1:

f3dfccb19805b5f12a7d11dba6fda855a2098263

Base64:

4baP