Unicode Finder

"ᬨ" U+1B28(BALINESE LETTER PA KAPAL)

U+1B28
Nazwa Bloku
Balinese
Nazwa
BALINESE LETTER PA KAPAL

Programming

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

Web

CSS
\001B28
HtmlDecimal
ᬨ
HtmlHexadecimal
ᬨ
Url
%E1%AC%A8

Code

MD5
ad0a601cfc0aaf9ab9251ae88b528494
Sha1
a1b23b1237ce6fdd18cf5d58aadb86927dc7972d
Base64
4ayo

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B28';
console.log(char);  // Output: ᬨ

Java:

char c = '\u1B28';
System.out.println(c);  // Output: ᬨ

JSON:

{"text": "\u1B28"}  // Value: ᬨ

Python:

char = '\u1B28'
print(char)  # Output: ᬨ

Perl:

my $char = "\x{1B28}";
print $char;  # Output: ᬨ

PHP:

$char = "\x{1B28}";
echo $char;  // Output: ᬨ

Ruby:

char = "\u{1B28}"
puts char  # Output: ᬨ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6952;</p>  <!-- Display: ᬨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B28;</p>  <!-- Display: ᬨ -->

URL Encoding:

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

Encodings

MD5:

ad0a601cfc0aaf9ab9251ae88b528494

SHA1:

a1b23b1237ce6fdd18cf5d58aadb86927dc7972d

Base64:

4ayo