Unicode Finder

"ᬾ" U+1B3E(BALINESE VOWEL SIGN TALING)

U+1B3E
Nazwa Bloku
Balinese
Nazwa
BALINESE VOWEL SIGN TALING

Programming

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

Web

CSS
\001B3E
HtmlDecimal
ᬾ
HtmlHexadecimal
ᬾ
Url
%E1%AC%BE

Code

MD5
e978393235d1c393980b21de0d2c114b
Sha1
898d88d7794ec0f73d1995466242493c2493164b
Base64
4ay+

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B3E';
console.log(char);  // Output: ᬾ

Java:

char c = '\u1B3E';
System.out.println(c);  // Output: ᬾ

JSON:

{"text": "\u1B3E"}  // Value: ᬾ

Python:

char = '\u1B3E'
print(char)  # Output: ᬾ

Perl:

my $char = "\x{1B3E}";
print $char;  # Output: ᬾ

PHP:

$char = "\x{1B3E}";
echo $char;  // Output: ᬾ

Ruby:

char = "\u{1B3E}"
puts char  # Output: ᬾ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6974;</p>  <!-- Display: ᬾ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B3E;</p>  <!-- Display: ᬾ -->

URL Encoding:

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

Encodings

MD5:

e978393235d1c393980b21de0d2c114b

SHA1:

898d88d7794ec0f73d1995466242493c2493164b

Base64:

4ay+