Unicode Finder

"ዏ" U+12CF(ETHIOPIC SYLLABLE WOA)

U+12CF
Blocknamn
Ethiopic
Namn
ETHIOPIC SYLLABLE WOA

Programming

C
\u12CF
JavaScript
\u12CF
Java
\u12CF
Json
\u12CF
Python
\u12CF
Perl
\x{12CF}
PHP
\x{12CF}
Ruby
\u{12CF}
Rust
\u{12CF}
Go
\u12CF

Web

CSS
\0012CF
HtmlDecimal
ዏ
HtmlHexadecimal
ዏ
Url
%E1%8B%8F

Code

MD5
a6589ca6e0c0d89f0dd8ed3346a2d1df
Sha1
3993f4d7e78d2e9af85c6b9d0f148f8427db14b9
Base64
4YuP

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u12CF';
console.log(char);  // Output: ዏ

Java:

char c = '\u12CF';
System.out.println(c);  // Output: ዏ

JSON:

{"text": "\u12CF"}  // Value: ዏ

Python:

char = '\u12CF'
print(char)  # Output: ዏ

Perl:

my $char = "\x{12CF}";
print $char;  # Output: ዏ

PHP:

$char = "\x{12CF}";
echo $char;  // Output: ዏ

Ruby:

char = "\u{12CF}"
puts char  # Output: ዏ

Rust:

let c = '\u{12CF}';
println!("{}", c);  // Output: ዏ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0012CF";  /* Display: ዏ */
}

HTML Decimal:

<p>HTML decimal: &#4815;</p>  <!-- Display: ዏ -->

HTML Hexadecimal:

<p>HTML hex: &#x12CF;</p>  <!-- Display: ዏ -->

URL Encoding:

// ዏ URL encoding
https://unicodefinder.com/search.php?query=%E1%8B%8F

Encodings

MD5:

a6589ca6e0c0d89f0dd8ed3346a2d1df

SHA1:

3993f4d7e78d2e9af85c6b9d0f148f8427db14b9

Base64:

4YuP