Unicode Finder

"᮲" U+1BB2(SUNDANESE DIGIT TWO)

U+1BB2
ブロック名
Sundanese
名前
SUNDANESE DIGIT TWO

Programming

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

Web

CSS
\001BB2
HtmlDecimal
᮲
HtmlHexadecimal
᮲
Url
%E1%AE%B2

Code

MD5
fa421977c3fc87d9b37462e9bea19cd7
Sha1
d7c3c09047c258937147e504f7cde531e86e0084
Base64
4a6y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1BB2';
console.log(char);  // Output: ᮲

Java:

char c = '\u1BB2';
System.out.println(c);  // Output: ᮲

JSON:

{"text": "\u1BB2"}  // Value: ᮲

Python:

char = '\u1BB2'
print(char)  # Output: ᮲

Perl:

my $char = "\x{1BB2}";
print $char;  # Output: ᮲

PHP:

$char = "\x{1BB2}";
echo $char;  // Output: ᮲

Ruby:

char = "\u{1BB2}"
puts char  # Output: ᮲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7090;</p>  <!-- Display: ᮲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BB2;</p>  <!-- Display: ᮲ -->

URL Encoding:

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

Encodings

MD5:

fa421977c3fc87d9b37462e9bea19cd7

SHA1:

d7c3c09047c258937147e504f7cde531e86e0084

Base64:

4a6y