Unicode Finder

"።" U+1362(ETHIOPIC FULL STOP)

U+1362
Nome do Bloco
Ethiopic
Nome
ETHIOPIC FULL STOP

Programming

C
\u1362
JavaScript
\u1362
Java
\u1362
Json
\u1362
Python
\u1362
Perl
\x{1362}
PHP
\x{1362}
Ruby
\u{1362}
Rust
\u{1362}
Go
\u1362

Web

CSS
\001362
HtmlDecimal
።
HtmlHexadecimal
።
Url
%E1%8D%A2

Code

MD5
64c7967092f0e4cd85a79d6a50686eeb
Sha1
7348be3a736e2144ac3b5ddf0f632e2455039ed8
Base64
4Y2i

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1362';
console.log(char);  // Output: ።

Java:

char c = '\u1362';
System.out.println(c);  // Output: ።

JSON:

{"text": "\u1362"}  // Value: ።

Python:

char = '\u1362'
print(char)  # Output: ።

Perl:

my $char = "\x{1362}";
print $char;  # Output: ።

PHP:

$char = "\x{1362}";
echo $char;  // Output: ።

Ruby:

char = "\u{1362}"
puts char  # Output: ።

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001362";  /* Display: ። */
}

HTML Decimal:

<p>HTML decimal: &#4962;</p>  <!-- Display: ። -->

HTML Hexadecimal:

<p>HTML hex: &#x1362;</p>  <!-- Display: ። -->

URL Encoding:

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

Encodings

MD5:

64c7967092f0e4cd85a79d6a50686eeb

SHA1:

7348be3a736e2144ac3b5ddf0f632e2455039ed8

Base64:

4Y2i