Unicode Finder

"᮫" U+1BAB(SUNDANESE SIGN VIRAMA)

U+1BAB
Nazwa Bloku
Sundanese
Nazwa
SUNDANESE SIGN VIRAMA

Programming

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

Web

CSS
\001BAB
HtmlDecimal
᮫
HtmlHexadecimal
᮫
Url
%E1%AE%AB

Code

MD5
90365b93336323ff97efc645a136bd23
Sha1
1ec5b0ca62630f626952bd47a302b23bd9cf337e
Base64
4a6r

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BAB';
console.log(char);  // Output: ᮫

Java:

char c = '\u1BAB';
System.out.println(c);  // Output: ᮫

JSON:

{"text": "\u1BAB"}  // Value: ᮫

Python:

char = '\u1BAB'
print(char)  # Output: ᮫

Perl:

my $char = "\x{1BAB}";
print $char;  # Output: ᮫

PHP:

$char = "\x{1BAB}";
echo $char;  // Output: ᮫

Ruby:

char = "\u{1BAB}"
puts char  # Output: ᮫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7083;</p>  <!-- Display: ᮫ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BAB;</p>  <!-- Display: ᮫ -->

URL Encoding:

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

Encodings

MD5:

90365b93336323ff97efc645a136bd23

SHA1:

1ec5b0ca62630f626952bd47a302b23bd9cf337e

Base64:

4a6r