Unicode Finder

"᎖" U+1396(ETHIOPIC TONAL MARK CHIRET)

U+1396
Nama Blok
Ethiopic Supplement
Nama
ETHIOPIC TONAL MARK CHIRET

Programming

C
\u1396
JavaScript
\u1396
Java
\u1396
Json
\u1396
Python
\u1396
Perl
\x{1396}
PHP
\x{1396}
Ruby
\u{1396}
Rust
\u{1396}
Go
\u1396

Web

CSS
\001396
HtmlDecimal
᎖
HtmlHexadecimal
᎖
Url
%E1%8E%96

Code

MD5
b1646e8fb685c3b31a3eba61f015cb13
Sha1
ac209469d9ae2ef6f7437e06d58df52680194b9f
Base64
4Y6W

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1396';
console.log(char);  // Output: ᎖

Java:

char c = '\u1396';
System.out.println(c);  // Output: ᎖

JSON:

{"text": "\u1396"}  // Value: ᎖

Python:

char = '\u1396'
print(char)  # Output: ᎖

Perl:

my $char = "\x{1396}";
print $char;  # Output: ᎖

PHP:

$char = "\x{1396}";
echo $char;  // Output: ᎖

Ruby:

char = "\u{1396}"
puts char  # Output: ᎖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001396";  /* Display: ᎖ */
}

HTML Decimal:

<p>HTML decimal: &#5014;</p>  <!-- Display: ᎖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1396;</p>  <!-- Display: ᎖ -->

URL Encoding:

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

Encodings

MD5:

b1646e8fb685c3b31a3eba61f015cb13

SHA1:

ac209469d9ae2ef6f7437e06d58df52680194b9f

Base64:

4Y6W