Unicode Finder

"ᬱ" U+1B31(BALINESE LETTER SA SAPA)

U+1B31
Nazwa Bloku
Balinese
Nazwa
BALINESE LETTER SA SAPA

Programming

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

Web

CSS
\001B31
HtmlDecimal
ᬱ
HtmlHexadecimal
ᬱ
Url
%E1%AC%B1

Code

MD5
c30366d3af871475c3ceee05ddce69fa
Sha1
fb9f0cc8f0f83195b23525a0c83c242b37629a35
Base64
4ayx

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B31';
console.log(char);  // Output: ᬱ

Java:

char c = '\u1B31';
System.out.println(c);  // Output: ᬱ

JSON:

{"text": "\u1B31"}  // Value: ᬱ

Python:

char = '\u1B31'
print(char)  # Output: ᬱ

Perl:

my $char = "\x{1B31}";
print $char;  # Output: ᬱ

PHP:

$char = "\x{1B31}";
echo $char;  // Output: ᬱ

Ruby:

char = "\u{1B31}"
puts char  # Output: ᬱ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6961;</p>  <!-- Display: ᬱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B31;</p>  <!-- Display: ᬱ -->

URL Encoding:

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

Encodings

MD5:

c30366d3af871475c3ceee05ddce69fa

SHA1:

fb9f0cc8f0f83195b23525a0c83c242b37629a35

Base64:

4ayx