Unicode Finder

"ᯉ" U+1BC9(BATAK LETTER NA)

U+1BC9
Nama Blok
Batak
Nama
BATAK LETTER NA

Programming

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

Web

CSS
\001BC9
HtmlDecimal
ᯉ
HtmlHexadecimal
ᯉ
Url
%E1%AF%89

Code

MD5
bcbb3f61fcc3dccc0e3992d18bdfcd10
Sha1
f968bd231374e27dafd8811594d4a0975023d240
Base64
4a+J

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BC9';
console.log(char);  // Output: ᯉ

Java:

char c = '\u1BC9';
System.out.println(c);  // Output: ᯉ

JSON:

{"text": "\u1BC9"}  // Value: ᯉ

Python:

char = '\u1BC9'
print(char)  # Output: ᯉ

Perl:

my $char = "\x{1BC9}";
print $char;  # Output: ᯉ

PHP:

$char = "\x{1BC9}";
echo $char;  // Output: ᯉ

Ruby:

char = "\u{1BC9}"
puts char  # Output: ᯉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7113;</p>  <!-- Display: ᯉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BC9;</p>  <!-- Display: ᯉ -->

URL Encoding:

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

Encodings

MD5:

bcbb3f61fcc3dccc0e3992d18bdfcd10

SHA1:

f968bd231374e27dafd8811594d4a0975023d240

Base64:

4a+J