Unicode Finder

"፰" U+1370(ETHIOPIC DIGIT EIGHT)

U+1370
Bloknaam
Ethiopic
Naam
ETHIOPIC DIGIT EIGHT

Programming

C
\u1370
JavaScript
\u1370
Java
\u1370
Json
\u1370
Python
\u1370
Perl
\x{1370}
PHP
\x{1370}
Ruby
\u{1370}
Rust
\u{1370}
Go
\u1370

Web

CSS
\001370
HtmlDecimal
፰
HtmlHexadecimal
፰
Url
%E1%8D%B0

Code

MD5
ff1d1dd2a54388d9353d490bba5c593a
Sha1
9718186df6dc44e97d073455292bab2bf435fd23
Base64
4Y2w

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1370';
console.log(char);  // Output: ፰

Java:

char c = '\u1370';
System.out.println(c);  // Output: ፰

JSON:

{"text": "\u1370"}  // Value: ፰

Python:

char = '\u1370'
print(char)  # Output: ፰

Perl:

my $char = "\x{1370}";
print $char;  # Output: ፰

PHP:

$char = "\x{1370}";
echo $char;  // Output: ፰

Ruby:

char = "\u{1370}"
puts char  # Output: ፰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001370";  /* Display: ፰ */
}

HTML Decimal:

<p>HTML decimal: &#4976;</p>  <!-- Display: ፰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1370;</p>  <!-- Display: ፰ -->

URL Encoding:

// ፰ URL encoding
https://unicodefinder.com/search.php?query=%E1%8D%B0

Encodings

MD5:

ff1d1dd2a54388d9353d490bba5c593a

SHA1:

9718186df6dc44e97d073455292bab2bf435fd23

Base64:

4Y2w