Unicode Finder

"ᯩ" U+1BE9(BATAK VOWEL SIGN EE)

U+1BE9
Nazwa Bloku
Batak
Nazwa
BATAK VOWEL SIGN EE

Programming

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

Web

CSS
\001BE9
HtmlDecimal
ᯩ
HtmlHexadecimal
ᯩ
Url
%E1%AF%A9

Code

MD5
4398ca56805e4b0c7186cc723565924c
Sha1
ca8a45368971105b8a2f491c42179f1942bd500f
Base64
4a+p

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BE9';
console.log(char);  // Output: ᯩ

Java:

char c = '\u1BE9';
System.out.println(c);  // Output: ᯩ

JSON:

{"text": "\u1BE9"}  // Value: ᯩ

Python:

char = '\u1BE9'
print(char)  # Output: ᯩ

Perl:

my $char = "\x{1BE9}";
print $char;  # Output: ᯩ

PHP:

$char = "\x{1BE9}";
echo $char;  // Output: ᯩ

Ruby:

char = "\u{1BE9}"
puts char  # Output: ᯩ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7145;</p>  <!-- Display: ᯩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BE9;</p>  <!-- Display: ᯩ -->

URL Encoding:

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

Encodings

MD5:

4398ca56805e4b0c7186cc723565924c

SHA1:

ca8a45368971105b8a2f491c42179f1942bd500f

Base64:

4a+p