Unicode Finder

"᭺" U+1B7A(BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLAK)

U+1B7A
Nazwa Bloku
Balinese
Nazwa
BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLAK

Programming

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

Web

CSS
\001B7A
HtmlDecimal
᭺
HtmlHexadecimal
᭺
Url
%E1%AD%BA

Code

MD5
625ab34b76b5966b0853a0893ebcae9e
Sha1
75fd2a4fcd5ad5c05f006324f4e8698d02671d86
Base64
4a26

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B7A';
console.log(char);  // Output: ᭺

Java:

char c = '\u1B7A';
System.out.println(c);  // Output: ᭺

JSON:

{"text": "\u1B7A"}  // Value: ᭺

Python:

char = '\u1B7A'
print(char)  # Output: ᭺

Perl:

my $char = "\x{1B7A}";
print $char;  # Output: ᭺

PHP:

$char = "\x{1B7A}";
echo $char;  // Output: ᭺

Ruby:

char = "\u{1B7A}"
puts char  # Output: ᭺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7034;</p>  <!-- Display: ᭺ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B7A;</p>  <!-- Display: ᭺ -->

URL Encoding:

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

Encodings

MD5:

625ab34b76b5966b0853a0893ebcae9e

SHA1:

75fd2a4fcd5ad5c05f006324f4e8698d02671d86

Base64:

4a26