Unicode Finder

"ᴙ" U+1D19(LATIN LETTER SMALL CAPITAL REVERSED R)

U+1D19
Block Name
Phonetic Extensions
Name
LATIN LETTER SMALL CAPITAL REVERSED R

Programming

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

Web

CSS
\001D19
HtmlDecimal
ᴙ
HtmlHexadecimal
ᴙ
Url
%E1%B4%99

Code

MD5
d49e0d6c0c2be9d197ff85b59d83d00e
Sha1
248af6041bf3108f3e87b86474c7678c1e714583
Base64
4bSZ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1D19';
console.log(char);  // Output: ᴙ

Java:

char c = '\u1D19';
System.out.println(c);  // Output: ᴙ

JSON:

{"text": "\u1D19"}  // Value: ᴙ

Python:

char = '\u1D19'
print(char)  # Output: ᴙ

Perl:

my $char = "\x{1D19}";
print $char;  # Output: ᴙ

PHP:

$char = "\x{1D19}";
echo $char;  // Output: ᴙ

Ruby:

char = "\u{1D19}"
puts char  # Output: ᴙ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7449;</p>  <!-- Display: ᴙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D19;</p>  <!-- Display: ᴙ -->

URL Encoding:

// ᴙ URL encoding
https://unicodefinder.com/search.php?query=%E1%B4%99

Encodings

MD5:

d49e0d6c0c2be9d197ff85b59d83d00e

SHA1:

248af6041bf3108f3e87b86474c7678c1e714583

Base64:

4bSZ