Unicode Finder

"᎙" U+1399(ETHIOPIC TONAL MARK KURT)

U+1399
Nome del Blocco
Ethiopic Supplement
Nome
ETHIOPIC TONAL MARK KURT

Programming

C
\u1399
JavaScript
\u1399
Java
\u1399
Json
\u1399
Python
\u1399
Perl
\x{1399}
PHP
\x{1399}
Ruby
\u{1399}
Rust
\u{1399}
Go
\u1399

Web

CSS
\001399
HtmlDecimal
᎙
HtmlHexadecimal
᎙
Url
%E1%8E%99

Code

MD5
9da21a58422c88d979fee9d19c313121
Sha1
b10a1f495a909e62b58d0d960e8c47bf0a17cbf8
Base64
4Y6Z

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1399';
console.log(char);  // Output: ᎙

Java:

char c = '\u1399';
System.out.println(c);  // Output: ᎙

JSON:

{"text": "\u1399"}  // Value: ᎙

Python:

char = '\u1399'
print(char)  # Output: ᎙

Perl:

my $char = "\x{1399}";
print $char;  # Output: ᎙

PHP:

$char = "\x{1399}";
echo $char;  // Output: ᎙

Ruby:

char = "\u{1399}"
puts char  # Output: ᎙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001399";  /* Display: ᎙ */
}

HTML Decimal:

<p>HTML decimal: &#5017;</p>  <!-- Display: ᎙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1399;</p>  <!-- Display: ᎙ -->

URL Encoding:

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

Encodings

MD5:

9da21a58422c88d979fee9d19c313121

SHA1:

b10a1f495a909e62b58d0d960e8c47bf0a17cbf8

Base64:

4Y6Z