Unicode Finder

"ᮨ" U+1BA8(SUNDANESE VOWEL SIGN PAMEPET)

U+1BA8
Nama Blok
Sundanese
Nama
SUNDANESE VOWEL SIGN PAMEPET

Programming

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

Web

CSS
\001BA8
HtmlDecimal
ᮨ
HtmlHexadecimal
ᮨ
Url
%E1%AE%A8

Code

MD5
9e493a0a4329a9331f282fe83f9359ac
Sha1
056b18d80e8661dc148f58bd31b26ea39a2ab345
Base64
4a6o

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BA8';
console.log(char);  // Output: ᮨ

Java:

char c = '\u1BA8';
System.out.println(c);  // Output: ᮨ

JSON:

{"text": "\u1BA8"}  // Value: ᮨ

Python:

char = '\u1BA8'
print(char)  # Output: ᮨ

Perl:

my $char = "\x{1BA8}";
print $char;  # Output: ᮨ

PHP:

$char = "\x{1BA8}";
echo $char;  // Output: ᮨ

Ruby:

char = "\u{1BA8}"
puts char  # Output: ᮨ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7080;</p>  <!-- Display: ᮨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BA8;</p>  <!-- Display: ᮨ -->

URL Encoding:

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

Encodings

MD5:

9e493a0a4329a9331f282fe83f9359ac

SHA1:

056b18d80e8661dc148f58bd31b26ea39a2ab345

Base64:

4a6o