Unicode Finder

"᎐" U+1390(ETHIOPIC TONAL MARK YIZET)

U+1390
Nume Bloc
Ethiopic Supplement
Nume
ETHIOPIC TONAL MARK YIZET

Programming

C
\u1390
JavaScript
\u1390
Java
\u1390
Json
\u1390
Python
\u1390
Perl
\x{1390}
PHP
\x{1390}
Ruby
\u{1390}
Rust
\u{1390}
Go
\u1390

Web

CSS
\001390
HtmlDecimal
᎐
HtmlHexadecimal
᎐
Url
%E1%8E%90

Code

MD5
39637baced4a5754c5b05cbe25cfea50
Sha1
f5819bbc4d732b03334e36d7dcc8159d181661a1
Base64
4Y6Q

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1390';
console.log(char);  // Output: ᎐

Java:

char c = '\u1390';
System.out.println(c);  // Output: ᎐

JSON:

{"text": "\u1390"}  // Value: ᎐

Python:

char = '\u1390'
print(char)  # Output: ᎐

Perl:

my $char = "\x{1390}";
print $char;  # Output: ᎐

PHP:

$char = "\x{1390}";
echo $char;  // Output: ᎐

Ruby:

char = "\u{1390}"
puts char  # Output: ᎐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001390";  /* Display: ᎐ */
}

HTML Decimal:

<p>HTML decimal: &#5008;</p>  <!-- Display: ᎐ -->

HTML Hexadecimal:

<p>HTML hex: &#x1390;</p>  <!-- Display: ᎐ -->

URL Encoding:

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

Encodings

MD5:

39637baced4a5754c5b05cbe25cfea50

SHA1:

f5819bbc4d732b03334e36d7dcc8159d181661a1

Base64:

4Y6Q