Unicode Finder

"ᯯ" U+1BEF(BATAK VOWEL SIGN U FOR SIMALUNGUN SA)

U+1BEF
Nazwa Bloku
Batak
Nazwa
BATAK VOWEL SIGN U FOR SIMALUNGUN SA

Programming

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

Web

CSS
\001BEF
HtmlDecimal
ᯯ
HtmlHexadecimal
ᯯ
Url
%E1%AF%AF

Code

MD5
146d6995b7323e6d5e6ae2dfcd6f2773
Sha1
517842e156396a06b605083e7c85187eb072877e
Base64
4a+v

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BEF';
console.log(char);  // Output: ᯯ

Java:

char c = '\u1BEF';
System.out.println(c);  // Output: ᯯ

JSON:

{"text": "\u1BEF"}  // Value: ᯯ

Python:

char = '\u1BEF'
print(char)  # Output: ᯯ

Perl:

my $char = "\x{1BEF}";
print $char;  # Output: ᯯ

PHP:

$char = "\x{1BEF}";
echo $char;  // Output: ᯯ

Ruby:

char = "\u{1BEF}"
puts char  # Output: ᯯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7151;</p>  <!-- Display: ᯯ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BEF;</p>  <!-- Display: ᯯ -->

URL Encoding:

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

Encodings

MD5:

146d6995b7323e6d5e6ae2dfcd6f2773

SHA1:

517842e156396a06b605083e7c85187eb072877e

Base64:

4a+v