Unicode Finder

"᯦" U+1BE6(BATAK SIGN TOMPI)

U+1BE6
Nazwa Bloku
Batak
Nazwa
BATAK SIGN TOMPI

Programming

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

Web

CSS
\001BE6
HtmlDecimal
᯦
HtmlHexadecimal
᯦
Url
%E1%AF%A6

Code

MD5
602007977f09a4cb5e43dfa688377bfe
Sha1
e1200cdf919de5fee6400dc68029012d49b3d80b
Base64
4a+m

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BE6';
console.log(char);  // Output: ᯦

Java:

char c = '\u1BE6';
System.out.println(c);  // Output: ᯦

JSON:

{"text": "\u1BE6"}  // Value: ᯦

Python:

char = '\u1BE6'
print(char)  # Output: ᯦

Perl:

my $char = "\x{1BE6}";
print $char;  # Output: ᯦

PHP:

$char = "\x{1BE6}";
echo $char;  // Output: ᯦

Ruby:

char = "\u{1BE6}"
puts char  # Output: ᯦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7142;</p>  <!-- Display: ᯦ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BE6;</p>  <!-- Display: ᯦ -->

URL Encoding:

// ᯦ URL encoding
https://unicodefinder.com/search.php?query=%E1%AF%A6

Encodings

MD5:

602007977f09a4cb5e43dfa688377bfe

SHA1:

e1200cdf919de5fee6400dc68029012d49b3d80b

Base64:

4a+m