Unicode Finder

"ⶖ" U+2D96(ETHIOPIC SYLLABLE GGWE)

U+2D96
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE GGWE

Programming

C
\u2D96
JavaScript
\u2D96
Java
\u2D96
Json
\u2D96
Python
\u2D96
Perl
\x{2D96}
PHP
\x{2D96}
Ruby
\u{2D96}
Rust
\u{2D96}
Go
\u2D96

Web

CSS
\002D96
HtmlDecimal
ⶖ
HtmlHexadecimal
ⶖ
Url
%E2%B6%96

Code

MD5
2aa8d9aaad0ab2cc9e488088dccafef3
Sha1
3a353aed143861dca94d12be83f1240ca4da93fb
Base64
4raW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D96';
console.log(char);  // Output: ⶖ

Java:

char c = '\u2D96';
System.out.println(c);  // Output: ⶖ

JSON:

{"text": "\u2D96"}  // Value: ⶖ

Python:

char = '\u2D96'
print(char)  # Output: ⶖ

Perl:

my $char = "\x{2D96}";
print $char;  # Output: ⶖ

PHP:

$char = "\x{2D96}";
echo $char;  // Output: ⶖ

Ruby:

char = "\u{2D96}"
puts char  # Output: ⶖ

Rust:

let c = '\u{2D96}';
println!("{}", c);  // Output: ⶖ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002D96";  /* Display: ⶖ */
}

HTML Decimal:

<p>HTML decimal: &#11670;</p>  <!-- Display: ⶖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D96;</p>  <!-- Display: ⶖ -->

URL Encoding:

// ⶖ URL encoding
https://unicodefinder.com/search.php?query=%E2%B6%96

Encodings

MD5:

2aa8d9aaad0ab2cc9e488088dccafef3

SHA1:

3a353aed143861dca94d12be83f1240ca4da93fb

Base64:

4raW