Unicode Finder

"ብ" U+1265(ETHIOPIC SYLLABLE BE)

U+1265
Nombre del Bloque
Ethiopic
Nombre
ETHIOPIC SYLLABLE BE

Programming

C
\u1265
JavaScript
\u1265
Java
\u1265
Json
\u1265
Python
\u1265
Perl
\x{1265}
PHP
\x{1265}
Ruby
\u{1265}
Rust
\u{1265}
Go
\u1265

Web

CSS
\001265
HtmlDecimal
ብ
HtmlHexadecimal
ብ
Url
%E1%89%A5

Code

MD5
f19cc331e70ab362581e3a7a7927da49
Sha1
0aedd27008cf383e2a5b5ddc1e08d4bfaa04084b
Base64
4Yml

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1265';
console.log(char);  // Output: ብ

Java:

char c = '\u1265';
System.out.println(c);  // Output: ብ

JSON:

{"text": "\u1265"}  // Value: ብ

Python:

char = '\u1265'
print(char)  # Output: ብ

Perl:

my $char = "\x{1265}";
print $char;  # Output: ብ

PHP:

$char = "\x{1265}";
echo $char;  // Output: ብ

Ruby:

char = "\u{1265}"
puts char  # Output: ብ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001265";  /* Display: ብ */
}

HTML Decimal:

<p>HTML decimal: &#4709;</p>  <!-- Display: ብ -->

HTML Hexadecimal:

<p>HTML hex: &#x1265;</p>  <!-- Display: ብ -->

URL Encoding:

// ብ URL encoding
https://unicodefinder.com/search.php?query=%E1%89%A5

Encodings

MD5:

f19cc331e70ab362581e3a7a7927da49

SHA1:

0aedd27008cf383e2a5b5ddc1e08d4bfaa04084b

Base64:

4Yml