Unicode Finder

"ʀ" U+0280(LATIN LETTER SMALL CAPITAL R)

ʀ
U+0280
Nama Blok
IPA Extensions
Nama
LATIN LETTER SMALL CAPITAL R

Programming

C
\u0280
JavaScript
\u0280
Java
\u0280
Json
\u0280
Python
\u0280
Perl
\x{0280}
PHP
\x{0280}
Ruby
\u{0280}
Rust
\u{280}
Go
\u0280

Web

CSS
\000280
HtmlDecimal
ʀ
HtmlHexadecimal
ʀ
Url
%CA%80

Code

MD5
cf910142af2a257321e30285d75866ce
Sha1
13d00b5f7ab238af2333d48d002fd171c61e9ba5
Base64
yoA=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0280';
console.log(char);  // Output: ʀ

Java:

char c = '\u0280';
System.out.println(c);  // Output: ʀ

JSON:

{"text": "\u0280"}  // Value: ʀ

Python:

char = '\u0280'
print(char)  # Output: ʀ

Perl:

my $char = "\x{0280}";
print $char;  # Output: ʀ

PHP:

$char = "\x{0280}";
echo $char;  // Output: ʀ

Ruby:

char = "\u{0280}"
puts char  # Output: ʀ

Rust:

let c = '\u{280}';
println!("{}", c);  // Output: ʀ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000280";  /* Display: ʀ */
}

HTML Decimal:

<p>HTML decimal: &#640;</p>  <!-- Display: ʀ -->

HTML Hexadecimal:

<p>HTML hex: &#x0280;</p>  <!-- Display: ʀ -->

URL Encoding:

// ʀ URL encoding
https://unicodefinder.com/search.php?query=%CA%80

Encodings

MD5:

cf910142af2a257321e30285d75866ce

SHA1:

13d00b5f7ab238af2333d48d002fd171c61e9ba5

Base64:

yoA=