Unicode Finder

"ᭈ" U+1B48(BALINESE LETTER EF SASAK)

U+1B48
Nazwa Bloku
Balinese
Nazwa
BALINESE LETTER EF SASAK

Programming

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

Web

CSS
\001B48
HtmlDecimal
ᭈ
HtmlHexadecimal
ᭈ
Url
%E1%AD%88

Code

MD5
fa143dd283075c541ab09265fc967dda
Sha1
bb087939375157988d6c2df19219db69b5901761
Base64
4a2I

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B48';
console.log(char);  // Output: ᭈ

Java:

char c = '\u1B48';
System.out.println(c);  // Output: ᭈ

JSON:

{"text": "\u1B48"}  // Value: ᭈ

Python:

char = '\u1B48'
print(char)  # Output: ᭈ

Perl:

my $char = "\x{1B48}";
print $char;  # Output: ᭈ

PHP:

$char = "\x{1B48}";
echo $char;  // Output: ᭈ

Ruby:

char = "\u{1B48}"
puts char  # Output: ᭈ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6984;</p>  <!-- Display: ᭈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B48;</p>  <!-- Display: ᭈ -->

URL Encoding:

// ᭈ URL encoding
https://unicodefinder.com/search.php?query=%E1%AD%88

Encodings

MD5:

fa143dd283075c541ab09265fc967dda

SHA1:

bb087939375157988d6c2df19219db69b5901761

Base64:

4a2I