Unicode Finder

"ᮚ" U+1B9A(SUNDANESE LETTER YA)

U+1B9A
Nazwa Bloku
Sundanese
Nazwa
SUNDANESE LETTER YA

Programming

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

Web

CSS
\001B9A
HtmlDecimal
ᮚ
HtmlHexadecimal
ᮚ
Url
%E1%AE%9A

Code

MD5
05b4cf321c9527e876448990f5c4e1d2
Sha1
67967f4682d09895aa2dd3dce4d65ec648d14cdf
Base64
4a6a

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B9A';
console.log(char);  // Output: ᮚ

Java:

char c = '\u1B9A';
System.out.println(c);  // Output: ᮚ

JSON:

{"text": "\u1B9A"}  // Value: ᮚ

Python:

char = '\u1B9A'
print(char)  # Output: ᮚ

Perl:

my $char = "\x{1B9A}";
print $char;  # Output: ᮚ

PHP:

$char = "\x{1B9A}";
echo $char;  // Output: ᮚ

Ruby:

char = "\u{1B9A}"
puts char  # Output: ᮚ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7066;</p>  <!-- Display: ᮚ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B9A;</p>  <!-- Display: ᮚ -->

URL Encoding:

// ᮚ URL encoding
https://unicodefinder.com/search.php?query=%E1%AE%9A

Encodings

MD5:

05b4cf321c9527e876448990f5c4e1d2

SHA1:

67967f4682d09895aa2dd3dce4d65ec648d14cdf

Base64:

4a6a