Unicode Finder

"ᰲ" U+1C32(LEPCHA CONSONANT SIGN R)

U+1C32
Название Блока
Lepcha
Название
LEPCHA CONSONANT SIGN R

Programming

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

Web

CSS
\001C32
HtmlDecimal
ᰲ
HtmlHexadecimal
ᰲ
Url
%E1%B0%B2

Code

MD5
9627765948feb5a7f13c07cbe060e681
Sha1
b723139e439c57a916c9b5fe21d68da5f43d8921
Base64
4bCy

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1C32';
console.log(char);  // Output: ᰲ

Java:

char c = '\u1C32';
System.out.println(c);  // Output: ᰲ

JSON:

{"text": "\u1C32"}  // Value: ᰲ

Python:

char = '\u1C32'
print(char)  # Output: ᰲ

Perl:

my $char = "\x{1C32}";
print $char;  # Output: ᰲ

PHP:

$char = "\x{1C32}";
echo $char;  // Output: ᰲ

Ruby:

char = "\u{1C32}"
puts char  # Output: ᰲ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7218;</p>  <!-- Display: ᰲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C32;</p>  <!-- Display: ᰲ -->

URL Encoding:

// ᰲ URL encoding
https://unicodefinder.com/search.php?query=%E1%B0%B2

Encodings

MD5:

9627765948feb5a7f13c07cbe060e681

SHA1:

b723139e439c57a916c9b5fe21d68da5f43d8921

Base64:

4bCy