Unicode Finder

"፵" U+1375(ETHIOPIC NUMBER FORTY)

U+1375
ब्लॉक का नाम
Ethiopic
नाम
ETHIOPIC NUMBER FORTY

Programming

C
\u1375
JavaScript
\u1375
Java
\u1375
Json
\u1375
Python
\u1375
Perl
\x{1375}
PHP
\x{1375}
Ruby
\u{1375}
Rust
\u{1375}
Go
\u1375

Web

CSS
\001375
HtmlDecimal
፵
HtmlHexadecimal
፵
Url
%E1%8D%B5

Code

MD5
b3d0b6ec0091f16fe24911b3bc7303fe
Sha1
2f6ac38996a08f57f75154854b6d3322dc2e272c
Base64
4Y21

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1375';
console.log(char);  // Output: ፵

Java:

char c = '\u1375';
System.out.println(c);  // Output: ፵

JSON:

{"text": "\u1375"}  // Value: ፵

Python:

char = '\u1375'
print(char)  # Output: ፵

Perl:

my $char = "\x{1375}";
print $char;  # Output: ፵

PHP:

$char = "\x{1375}";
echo $char;  // Output: ፵

Ruby:

char = "\u{1375}"
puts char  # Output: ፵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001375";  /* Display: ፵ */
}

HTML Decimal:

<p>HTML decimal: &#4981;</p>  <!-- Display: ፵ -->

HTML Hexadecimal:

<p>HTML hex: &#x1375;</p>  <!-- Display: ፵ -->

URL Encoding:

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

Encodings

MD5:

b3d0b6ec0091f16fe24911b3bc7303fe

SHA1:

2f6ac38996a08f57f75154854b6d3322dc2e272c

Base64:

4Y21