Unicode Finder

"ᮛ" U+1B9B(SUNDANESE LETTER RA)

U+1B9B
Nama Blok
Sundanese
Nama
SUNDANESE LETTER RA

Programming

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

Web

CSS
\001B9B
HtmlDecimal
ᮛ
HtmlHexadecimal
ᮛ
Url
%E1%AE%9B

Code

MD5
e9b4a0dfd63e053a39ff5b9f6ccf6768
Sha1
fa468c9714eb42f02bbaede84a6017864f49a049
Base64
4a6b

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1B9B';
console.log(char);  // Output: ᮛ

Java:

char c = '\u1B9B';
System.out.println(c);  // Output: ᮛ

JSON:

{"text": "\u1B9B"}  // Value: ᮛ

Python:

char = '\u1B9B'
print(char)  # Output: ᮛ

Perl:

my $char = "\x{1B9B}";
print $char;  # Output: ᮛ

PHP:

$char = "\x{1B9B}";
echo $char;  // Output: ᮛ

Ruby:

char = "\u{1B9B}"
puts char  # Output: ᮛ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7067;</p>  <!-- Display: ᮛ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B9B;</p>  <!-- Display: ᮛ -->

URL Encoding:

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

Encodings

MD5:

e9b4a0dfd63e053a39ff5b9f6ccf6768

SHA1:

fa468c9714eb42f02bbaede84a6017864f49a049

Base64:

4a6b