Unicode Finder

"Ṝ" U+1E5C(LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON)

U+1E5C
Nama Blok
Latin Extended Additional
Nama
LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON

Programming

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

Web

CSS
\001E5C
HtmlDecimal
Ṝ
HtmlHexadecimal
Ṝ
Url
%E1%B9%9C

Code

MD5
2f0b7dbd77848ec7f620115bbfc7d3ad
Sha1
ba33c9d4e144f92a67c103bb8fe6de21156ae427
Base64
4bmc

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1E5C';
console.log(char);  // Output: Ṝ

Java:

char c = '\u1E5C';
System.out.println(c);  // Output: Ṝ

JSON:

{"text": "\u1E5C"}  // Value: Ṝ

Python:

char = '\u1E5C'
print(char)  # Output: Ṝ

Perl:

my $char = "\x{1E5C}";
print $char;  # Output: Ṝ

PHP:

$char = "\x{1E5C}";
echo $char;  // Output: Ṝ

Ruby:

char = "\u{1E5C}"
puts char  # Output: Ṝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7772;</p>  <!-- Display: Ṝ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E5C;</p>  <!-- Display: Ṝ -->

URL Encoding:

// Ṝ URL encoding
https://unicodefinder.com/search.php?query=%E1%B9%9C

Encodings

MD5:

2f0b7dbd77848ec7f620115bbfc7d3ad

SHA1:

ba33c9d4e144f92a67c103bb8fe6de21156ae427

Base64:

4bmc