Unicode Finder

"ᮧ" U+1BA7(SUNDANESE VOWEL SIGN PANOLONG)

U+1BA7
Nama Blok
Sundanese
Nama
SUNDANESE VOWEL SIGN PANOLONG

Programming

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

Web

CSS
\001BA7
HtmlDecimal
ᮧ
HtmlHexadecimal
ᮧ
Url
%E1%AE%A7

Code

MD5
894c0f41f9766c6240801b54e7577e0e
Sha1
4465e37056cfaca3ce369743ee6b5ad149c91efc
Base64
4a6n

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BA7';
console.log(char);  // Output: ᮧ

Java:

char c = '\u1BA7';
System.out.println(c);  // Output: ᮧ

JSON:

{"text": "\u1BA7"}  // Value: ᮧ

Python:

char = '\u1BA7'
print(char)  # Output: ᮧ

Perl:

my $char = "\x{1BA7}";
print $char;  # Output: ᮧ

PHP:

$char = "\x{1BA7}";
echo $char;  // Output: ᮧ

Ruby:

char = "\u{1BA7}"
puts char  # Output: ᮧ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7079;</p>  <!-- Display: ᮧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BA7;</p>  <!-- Display: ᮧ -->

URL Encoding:

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

Encodings

MD5:

894c0f41f9766c6240801b54e7577e0e

SHA1:

4465e37056cfaca3ce369743ee6b5ad149c91efc

Base64:

4a6n