Unicode Finder

"፭" U+136D(ETHIOPIC DIGIT FIVE)

U+136D
Blockname
Ethiopic
Name
ETHIOPIC DIGIT FIVE

Programming

C
\u136D
JavaScript
\u136D
Java
\u136D
Json
\u136D
Python
\u136D
Perl
\x{136D}
PHP
\x{136D}
Ruby
\u{136D}
Rust
\u{136D}
Go
\u136D

Web

CSS
\00136D
HtmlDecimal
፭
HtmlHexadecimal
፭
Url
%E1%8D%AD

Code

MD5
b5a7e21c84519813156d4b3a91e03ffb
Sha1
2969e04d9838197c51eed360aa7e9d7f2ac19866
Base64
4Y2t

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u136D';
console.log(char);  // Output: ፭

Java:

char c = '\u136D';
System.out.println(c);  // Output: ፭

JSON:

{"text": "\u136D"}  // Value: ፭

Python:

char = '\u136D'
print(char)  # Output: ፭

Perl:

my $char = "\x{136D}";
print $char;  # Output: ፭

PHP:

$char = "\x{136D}";
echo $char;  // Output: ፭

Ruby:

char = "\u{136D}"
puts char  # Output: ፭

Rust:

let c = '\u{136D}';
println!("{}", c);  // Output: ፭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00136D";  /* Display: ፭ */
}

HTML Decimal:

<p>HTML decimal: &#4973;</p>  <!-- Display: ፭ -->

HTML Hexadecimal:

<p>HTML hex: &#x136D;</p>  <!-- Display: ፭ -->

URL Encoding:

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

Encodings

MD5:

b5a7e21c84519813156d4b3a91e03ffb

SHA1:

2969e04d9838197c51eed360aa7e9d7f2ac19866

Base64:

4Y2t