Unicode Finder

"Ɽ" U+2C64(LATIN CAPITAL LETTER R WITH TAIL)

U+2C64
Block Name
Latin Extended-C
Name
LATIN CAPITAL LETTER R WITH TAIL

Programming

C
\u2C64
JavaScript
\u2C64
Java
\u2C64
Json
\u2C64
Python
\u2C64
Perl
\x{2C64}
PHP
\x{2C64}
Ruby
\u{2C64}
Rust
\u{2C64}
Go
\u2C64

Web

CSS
\002C64
HtmlDecimal
Ɽ
HtmlHexadecimal
Ɽ
Url
%E2%B1%A4

Code

MD5
f7e40f3e181395cebfed7a8f1c139524
Sha1
6684ae63500d49d951ec5138fd3a87de76fb808f
Base64
4rGk

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C64';
console.log(char);  // Output: Ɽ

Java:

char c = '\u2C64';
System.out.println(c);  // Output: Ɽ

JSON:

{"text": "\u2C64"}  // Value: Ɽ

Python:

char = '\u2C64'
print(char)  # Output: Ɽ

Perl:

my $char = "\x{2C64}";
print $char;  # Output: Ɽ

PHP:

$char = "\x{2C64}";
echo $char;  // Output: Ɽ

Ruby:

char = "\u{2C64}"
puts char  # Output: Ɽ

Rust:

let c = '\u{2C64}';
println!("{}", c);  // Output: Ɽ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002C64";  /* Display: Ɽ */
}

HTML Decimal:

<p>HTML decimal: &#11364;</p>  <!-- Display: Ɽ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C64;</p>  <!-- Display: Ɽ -->

URL Encoding:

// Ɽ URL encoding
https://unicodefinder.com/search.php?query=%E2%B1%A4

Encodings

MD5:

f7e40f3e181395cebfed7a8f1c139524

SHA1:

6684ae63500d49d951ec5138fd3a87de76fb808f

Base64:

4rGk