Unicode Finder

"ᯟ" U+1BDF(BATAK LETTER SIMALUNGUN LA)

U+1BDF
Nama Blok
Batak
Nama
BATAK LETTER SIMALUNGUN LA

Programming

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

Web

CSS
\001BDF
HtmlDecimal
ᯟ
HtmlHexadecimal
ᯟ
Url
%E1%AF%9F

Code

MD5
341f655c03b6e0a4aa11ad88d38647c5
Sha1
42abbf624fb703d425693ef8370de69d9707eb38
Base64
4a+f

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BDF';
console.log(char);  // Output: ᯟ

Java:

char c = '\u1BDF';
System.out.println(c);  // Output: ᯟ

JSON:

{"text": "\u1BDF"}  // Value: ᯟ

Python:

char = '\u1BDF'
print(char)  # Output: ᯟ

Perl:

my $char = "\x{1BDF}";
print $char;  # Output: ᯟ

PHP:

$char = "\x{1BDF}";
echo $char;  // Output: ᯟ

Ruby:

char = "\u{1BDF}"
puts char  # Output: ᯟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7135;</p>  <!-- Display: ᯟ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BDF;</p>  <!-- Display: ᯟ -->

URL Encoding:

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

Encodings

MD5:

341f655c03b6e0a4aa11ad88d38647c5

SHA1:

42abbf624fb703d425693ef8370de69d9707eb38

Base64:

4a+f