Unicode Finder

"᎕" U+1395(ETHIOPIC TONAL MARK KENAT)

U+1395
Bloknaam
Ethiopic Supplement
Naam
ETHIOPIC TONAL MARK KENAT

Programming

C
\u1395
JavaScript
\u1395
Java
\u1395
Json
\u1395
Python
\u1395
Perl
\x{1395}
PHP
\x{1395}
Ruby
\u{1395}
Rust
\u{1395}
Go
\u1395

Web

CSS
\001395
HtmlDecimal
᎕
HtmlHexadecimal
᎕
Url
%E1%8E%95

Code

MD5
e85971f0256a943cbef68dab1b3a7790
Sha1
a135298f84552eaff9c5550b51010ea2df26f211
Base64
4Y6V

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1395';
console.log(char);  // Output: ᎕

Java:

char c = '\u1395';
System.out.println(c);  // Output: ᎕

JSON:

{"text": "\u1395"}  // Value: ᎕

Python:

char = '\u1395'
print(char)  # Output: ᎕

Perl:

my $char = "\x{1395}";
print $char;  # Output: ᎕

PHP:

$char = "\x{1395}";
echo $char;  // Output: ᎕

Ruby:

char = "\u{1395}"
puts char  # Output: ᎕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001395";  /* Display: ᎕ */
}

HTML Decimal:

<p>HTML decimal: &#5013;</p>  <!-- Display: ᎕ -->

HTML Hexadecimal:

<p>HTML hex: &#x1395;</p>  <!-- Display: ᎕ -->

URL Encoding:

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

Encodings

MD5:

e85971f0256a943cbef68dab1b3a7790

SHA1:

a135298f84552eaff9c5550b51010ea2df26f211

Base64:

4Y6V