Unicode Finder

"ȓ" U+0213(LATIN SMALL LETTER R WITH INVERTED BREVE)

ȓ
U+0213
Tên Khối
Latin Extended-B
Tên
LATIN SMALL LETTER R WITH INVERTED BREVE

Programming

C
\u0213
JavaScript
\u0213
Java
\u0213
Json
\u0213
Python
\u0213
Perl
\x{0213}
PHP
\x{0213}
Ruby
\u{0213}
Rust
\u{213}
Go
\u0213

Web

CSS
\000213
HtmlDecimal
ȓ
HtmlHexadecimal
ȓ
Url
%C8%93

Code

MD5
796bf8ef141ebd37894524680148ed32
Sha1
23ae98e786b2ed8fffafe94df299b959d4fa04fb
Base64
yJM=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u0213';
console.log(char);  // Output: ȓ

Java:

char c = '\u0213';
System.out.println(c);  // Output: ȓ

JSON:

{"text": "\u0213"}  // Value: ȓ

Python:

char = '\u0213'
print(char)  # Output: ȓ

Perl:

my $char = "\x{0213}";
print $char;  # Output: ȓ

PHP:

$char = "\x{0213}";
echo $char;  // Output: ȓ

Ruby:

char = "\u{0213}"
puts char  # Output: ȓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000213";  /* Display: ȓ */
}

HTML Decimal:

<p>HTML decimal: &#531;</p>  <!-- Display: ȓ -->

HTML Hexadecimal:

<p>HTML hex: &#x0213;</p>  <!-- Display: ȓ -->

URL Encoding:

// ȓ URL encoding
https://unicodefinder.com/search.php?query=%C8%93

Encodings

MD5:

796bf8ef141ebd37894524680148ed32

SHA1:

23ae98e786b2ed8fffafe94df299b959d4fa04fb

Base64:

yJM=