Unicode Finder

"ᮩ" U+1BA9(SUNDANESE VOWEL SIGN PANEULEUNG)

U+1BA9
ブロック名
Sundanese
名前
SUNDANESE VOWEL SIGN PANEULEUNG

Programming

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

Web

CSS
\001BA9
HtmlDecimal
ᮩ
HtmlHexadecimal
ᮩ
Url
%E1%AE%A9

Code

MD5
da600563cc49cee10edf76c6cfcde6db
Sha1
6d79108fc061c57c1d7079d8459821cbde6a120a
Base64
4a6p

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1BA9';
console.log(char);  // Output: ᮩ

Java:

char c = '\u1BA9';
System.out.println(c);  // Output: ᮩ

JSON:

{"text": "\u1BA9"}  // Value: ᮩ

Python:

char = '\u1BA9'
print(char)  # Output: ᮩ

Perl:

my $char = "\x{1BA9}";
print $char;  # Output: ᮩ

PHP:

$char = "\x{1BA9}";
echo $char;  // Output: ᮩ

Ruby:

char = "\u{1BA9}"
puts char  # Output: ᮩ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7081;</p>  <!-- Display: ᮩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BA9;</p>  <!-- Display: ᮩ -->

URL Encoding:

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

Encodings

MD5:

da600563cc49cee10edf76c6cfcde6db

SHA1:

6d79108fc061c57c1d7079d8459821cbde6a120a

Base64:

4a6p