Unicode Finder

"ᯬ" U+1BEC(BATAK VOWEL SIGN O)

U+1BEC
Nazwa Bloku
Batak
Nazwa
BATAK VOWEL SIGN O

Programming

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

Web

CSS
\001BEC
HtmlDecimal
ᯬ
HtmlHexadecimal
ᯬ
Url
%E1%AF%AC

Code

MD5
fd3d62c70fa7b0f7be2be987d02645ed
Sha1
f16ca6814c39f9f0f05c55a8e111d2660d1d64df
Base64
4a+s

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BEC';
console.log(char);  // Output: ᯬ

Java:

char c = '\u1BEC';
System.out.println(c);  // Output: ᯬ

JSON:

{"text": "\u1BEC"}  // Value: ᯬ

Python:

char = '\u1BEC'
print(char)  # Output: ᯬ

Perl:

my $char = "\x{1BEC}";
print $char;  # Output: ᯬ

PHP:

$char = "\x{1BEC}";
echo $char;  // Output: ᯬ

Ruby:

char = "\u{1BEC}"
puts char  # Output: ᯬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7148;</p>  <!-- Display: ᯬ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BEC;</p>  <!-- Display: ᯬ -->

URL Encoding:

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

Encodings

MD5:

fd3d62c70fa7b0f7be2be987d02645ed

SHA1:

f16ca6814c39f9f0f05c55a8e111d2660d1d64df

Base64:

4a+s