Unicode Finder

"ᯂ" U+1BC2(BATAK LETTER HA)

U+1BC2
ブロック名
Batak
名前
BATAK LETTER HA

Programming

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

Web

CSS
\001BC2
HtmlDecimal
ᯂ
HtmlHexadecimal
ᯂ
Url
%E1%AF%82

Code

MD5
99a6900e3f4d25a5020c84d1603b9129
Sha1
7172cb2fabee49487697c78eba8cbe1d2562a03f
Base64
4a+C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1BC2';
console.log(char);  // Output: ᯂ

Java:

char c = '\u1BC2';
System.out.println(c);  // Output: ᯂ

JSON:

{"text": "\u1BC2"}  // Value: ᯂ

Python:

char = '\u1BC2'
print(char)  # Output: ᯂ

Perl:

my $char = "\x{1BC2}";
print $char;  # Output: ᯂ

PHP:

$char = "\x{1BC2}";
echo $char;  // Output: ᯂ

Ruby:

char = "\u{1BC2}"
puts char  # Output: ᯂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7106;</p>  <!-- Display: ᯂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BC2;</p>  <!-- Display: ᯂ -->

URL Encoding:

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

Encodings

MD5:

99a6900e3f4d25a5020c84d1603b9129

SHA1:

7172cb2fabee49487697c78eba8cbe1d2562a03f

Base64:

4a+C