Unicode Finder

"ʁ" U+0281(LATIN LETTER SMALL CAPITAL INVERTED R)

ʁ
U+0281
ब्लॉक का नाम
IPA Extensions
नाम
LATIN LETTER SMALL CAPITAL INVERTED R

Programming

C
\u0281
JavaScript
\u0281
Java
\u0281
Json
\u0281
Python
\u0281
Perl
\x{0281}
PHP
\x{0281}
Ruby
\u{0281}
Rust
\u{281}
Go
\u0281

Web

CSS
\000281
HtmlDecimal
ʁ
HtmlHexadecimal
ʁ
Url
%CA%81

Code

MD5
797de87867a46493057f65e41bb1eb77
Sha1
2e8b48a90fc6ff2c1fa716612e36e1a88e1d77cd
Base64
yoE=

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u0281';
console.log(char);  // Output: ʁ

Java:

char c = '\u0281';
System.out.println(c);  // Output: ʁ

JSON:

{"text": "\u0281"}  // Value: ʁ

Python:

char = '\u0281'
print(char)  # Output: ʁ

Perl:

my $char = "\x{0281}";
print $char;  # Output: ʁ

PHP:

$char = "\x{0281}";
echo $char;  // Output: ʁ

Ruby:

char = "\u{0281}"
puts char  # Output: ʁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000281";  /* Display: ʁ */
}

HTML Decimal:

<p>HTML decimal: &#641;</p>  <!-- Display: ʁ -->

HTML Hexadecimal:

<p>HTML hex: &#x0281;</p>  <!-- Display: ʁ -->

URL Encoding:

// ʁ URL encoding
https://unicodefinder.com/search.php?query=%CA%81

Encodings

MD5:

797de87867a46493057f65e41bb1eb77

SHA1:

2e8b48a90fc6ff2c1fa716612e36e1a88e1d77cd

Base64:

yoE=