Unicode Finder

"ᯏ" U+1BCF(BATAK LETTER SIMALUNGUN GA)

U+1BCF
Nama Blok
Batak
Nama
BATAK LETTER SIMALUNGUN GA

Programming

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

Web

CSS
\001BCF
HtmlDecimal
ᯏ
HtmlHexadecimal
ᯏ
Url
%E1%AF%8F

Code

MD5
d0842bffdeaaa4efa5c5cefc65db95bb
Sha1
668495a6b9cc4e41a53fa76ded16c89eb4aa1638
Base64
4a+P

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BCF';
console.log(char);  // Output: ᯏ

Java:

char c = '\u1BCF';
System.out.println(c);  // Output: ᯏ

JSON:

{"text": "\u1BCF"}  // Value: ᯏ

Python:

char = '\u1BCF'
print(char)  # Output: ᯏ

Perl:

my $char = "\x{1BCF}";
print $char;  # Output: ᯏ

PHP:

$char = "\x{1BCF}";
echo $char;  // Output: ᯏ

Ruby:

char = "\u{1BCF}"
puts char  # Output: ᯏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7119;</p>  <!-- Display: ᯏ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BCF;</p>  <!-- Display: ᯏ -->

URL Encoding:

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

Encodings

MD5:

d0842bffdeaaa4efa5c5cefc65db95bb

SHA1:

668495a6b9cc4e41a53fa76ded16c89eb4aa1638

Base64:

4a+P