Unicode Finder

"᭻" U+1B7B(BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLUK)

U+1B7B
Nazwa Bloku
Balinese
Nazwa
BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLUK

Programming

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

Web

CSS
\001B7B
HtmlDecimal
᭻
HtmlHexadecimal
᭻
Url
%E1%AD%BB

Code

MD5
9d80f1f6e4b078267a9b1c09fe68ac04
Sha1
c9e2050e67711dfd91529b3351e2c5a41fd5367c
Base64
4a27

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1B7B';
console.log(char);  // Output: ᭻

Java:

char c = '\u1B7B';
System.out.println(c);  // Output: ᭻

JSON:

{"text": "\u1B7B"}  // Value: ᭻

Python:

char = '\u1B7B'
print(char)  # Output: ᭻

Perl:

my $char = "\x{1B7B}";
print $char;  # Output: ᭻

PHP:

$char = "\x{1B7B}";
echo $char;  // Output: ᭻

Ruby:

char = "\u{1B7B}"
puts char  # Output: ᭻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7035;</p>  <!-- Display: ᭻ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B7B;</p>  <!-- Display: ᭻ -->

URL Encoding:

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

Encodings

MD5:

9d80f1f6e4b078267a9b1c09fe68ac04

SHA1:

c9e2050e67711dfd91529b3351e2c5a41fd5367c

Base64:

4a27