Unicode Finder

"ᯭ" U+1BED(BATAK VOWEL SIGN KARO O)

U+1BED
Nazwa Bloku
Batak
Nazwa
BATAK VOWEL SIGN KARO O

Programming

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

Web

CSS
\001BED
HtmlDecimal
ᯭ
HtmlHexadecimal
ᯭ
Url
%E1%AF%AD

Code

MD5
3e5951327d45ac6877b8d29effdcb6f7
Sha1
36759f217284dc5fb72f8fcdfb3065c9ac861525
Base64
4a+t

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BED';
console.log(char);  // Output: ᯭ

Java:

char c = '\u1BED';
System.out.println(c);  // Output: ᯭ

JSON:

{"text": "\u1BED"}  // Value: ᯭ

Python:

char = '\u1BED'
print(char)  # Output: ᯭ

Perl:

my $char = "\x{1BED}";
print $char;  # Output: ᯭ

PHP:

$char = "\x{1BED}";
echo $char;  // Output: ᯭ

Ruby:

char = "\u{1BED}"
puts char  # Output: ᯭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7149;</p>  <!-- Display: ᯭ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BED;</p>  <!-- Display: ᯭ -->

URL Encoding:

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

Encodings

MD5:

3e5951327d45ac6877b8d29effdcb6f7

SHA1:

36759f217284dc5fb72f8fcdfb3065c9ac861525

Base64:

4a+t