Unicode Finder

"ᎆ" U+1386(ETHIOPIC SYLLABLE BWEE)

U+1386
Nome do Bloco
Ethiopic Supplement
Nome
ETHIOPIC SYLLABLE BWEE

Programming

C
\u1386
JavaScript
\u1386
Java
\u1386
Json
\u1386
Python
\u1386
Perl
\x{1386}
PHP
\x{1386}
Ruby
\u{1386}
Rust
\u{1386}
Go
\u1386

Web

CSS
\001386
HtmlDecimal
ᎆ
HtmlHexadecimal
ᎆ
Url
%E1%8E%86

Code

MD5
bd68ebfae08e1f985f144dadb9882f35
Sha1
208257474e6d9da75eea8dfb7c953cbd0fac2caf
Base64
4Y6G

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1386';
console.log(char);  // Output: ᎆ

Java:

char c = '\u1386';
System.out.println(c);  // Output: ᎆ

JSON:

{"text": "\u1386"}  // Value: ᎆ

Python:

char = '\u1386'
print(char)  # Output: ᎆ

Perl:

my $char = "\x{1386}";
print $char;  # Output: ᎆ

PHP:

$char = "\x{1386}";
echo $char;  // Output: ᎆ

Ruby:

char = "\u{1386}"
puts char  # Output: ᎆ

Rust:

let c = '\u{1386}';
println!("{}", c);  // Output: ᎆ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001386";  /* Display: ᎆ */
}

HTML Decimal:

<p>HTML decimal: &#4998;</p>  <!-- Display: ᎆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1386;</p>  <!-- Display: ᎆ -->

URL Encoding:

// ᎆ URL encoding
https://unicodefinder.com/search.php?query=%E1%8E%86

Encodings

MD5:

bd68ebfae08e1f985f144dadb9882f35

SHA1:

208257474e6d9da75eea8dfb7c953cbd0fac2caf

Base64:

4Y6G