Unicode Finder

"ṙ" U+1E59(LATIN SMALL LETTER R WITH DOT ABOVE)

U+1E59
Nama Blok
Latin Extended Additional
Nama
LATIN SMALL LETTER R WITH DOT ABOVE

Programming

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

Web

CSS
\001E59
HtmlDecimal
ṙ
HtmlHexadecimal
ṙ
Url
%E1%B9%99

Code

MD5
4d8567278250a6eee2857f403677ff78
Sha1
3ee17c105b68b03e4b155522aec8821b9edeb819
Base64
4bmZ

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1E59';
console.log(char);  // Output: ṙ

Java:

char c = '\u1E59';
System.out.println(c);  // Output: ṙ

JSON:

{"text": "\u1E59"}  // Value: ṙ

Python:

char = '\u1E59'
print(char)  # Output: ṙ

Perl:

my $char = "\x{1E59}";
print $char;  # Output: ṙ

PHP:

$char = "\x{1E59}";
echo $char;  // Output: ṙ

Ruby:

char = "\u{1E59}"
puts char  # Output: ṙ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7769;</p>  <!-- Display: ṙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E59;</p>  <!-- Display: ṙ -->

URL Encoding:

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

Encodings

MD5:

4d8567278250a6eee2857f403677ff78

SHA1:

3ee17c105b68b03e4b155522aec8821b9edeb819

Base64:

4bmZ