Unicode Finder

"᎑" U+1391(ETHIOPIC TONAL MARK DERET)

U+1391
نام بلوک
Ethiopic Supplement
نام
ETHIOPIC TONAL MARK DERET

Programming

C
\u1391
JavaScript
\u1391
Java
\u1391
Json
\u1391
Python
\u1391
Perl
\x{1391}
PHP
\x{1391}
Ruby
\u{1391}
Rust
\u{1391}
Go
\u1391

Web

CSS
\001391
HtmlDecimal
᎑
HtmlHexadecimal
᎑
Url
%E1%8E%91

Code

MD5
ddffa8749719ac7040d1dc93c7c92f46
Sha1
44a58096ed30a555aee443138779918189b8f5e4
Base64
4Y6R

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u1391';
console.log(char);  // Output: ᎑

Java:

char c = '\u1391';
System.out.println(c);  // Output: ᎑

JSON:

{"text": "\u1391"}  // Value: ᎑

Python:

char = '\u1391'
print(char)  # Output: ᎑

Perl:

my $char = "\x{1391}";
print $char;  # Output: ᎑

PHP:

$char = "\x{1391}";
echo $char;  // Output: ᎑

Ruby:

char = "\u{1391}"
puts char  # Output: ᎑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001391";  /* Display: ᎑ */
}

HTML Decimal:

<p>HTML decimal: &#5009;</p>  <!-- Display: ᎑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1391;</p>  <!-- Display: ᎑ -->

URL Encoding:

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

Encodings

MD5:

ddffa8749719ac7040d1dc93c7c92f46

SHA1:

44a58096ed30a555aee443138779918189b8f5e4

Base64:

4Y6R