Unicode Finder

"Ṛ" U+1E5A(LATIN CAPITAL LETTER R WITH DOT BELOW)

U+1E5A
区块名称
Latin Extended Additional
名称
LATIN CAPITAL LETTER R WITH DOT BELOW

Programming

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

Web

CSS
\001E5A
HtmlDecimal
Ṛ
HtmlHexadecimal
Ṛ
Url
%E1%B9%9A

Code

MD5
4633e6793316fdaab9b1736a316983f2
Sha1
067a52582e452e9775fbe2671db89ef1abb9399b
Base64
4bma

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1E5A';
console.log(char);  // Output: Ṛ

Java:

char c = '\u1E5A';
System.out.println(c);  // Output: Ṛ

JSON:

{"text": "\u1E5A"}  // Value: Ṛ

Python:

char = '\u1E5A'
print(char)  # Output: Ṛ

Perl:

my $char = "\x{1E5A}";
print $char;  # Output: Ṛ

PHP:

$char = "\x{1E5A}";
echo $char;  // Output: Ṛ

Ruby:

char = "\u{1E5A}"
puts char  # Output: Ṛ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7770;</p>  <!-- Display: Ṛ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E5A;</p>  <!-- Display: Ṛ -->

URL Encoding:

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

Encodings

MD5:

4633e6793316fdaab9b1736a316983f2

SHA1:

067a52582e452e9775fbe2671db89ef1abb9399b

Base64:

4bma