Unicode Finder

"ቦ" U+1266(ETHIOPIC SYLLABLE BO)

U+1266
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE BO

Programming

C
\u1266
JavaScript
\u1266
Java
\u1266
Json
\u1266
Python
\u1266
Perl
\x{1266}
PHP
\x{1266}
Ruby
\u{1266}
Rust
\u{1266}
Go
\u1266

Web

CSS
\001266
HtmlDecimal
ቦ
HtmlHexadecimal
ቦ
Url
%E1%89%A6

Code

MD5
2ff13a2d78197f6cb3034c1a85ab6e22
Sha1
db0e3a51d85b93b195269dfe1f0a272f418bb699
Base64
4Ymm

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u1266';
console.log(char);  // Output: ቦ

Java:

char c = '\u1266';
System.out.println(c);  // Output: ቦ

JSON:

{"text": "\u1266"}  // Value: ቦ

Python:

char = '\u1266'
print(char)  # Output: ቦ

Perl:

my $char = "\x{1266}";
print $char;  # Output: ቦ

PHP:

$char = "\x{1266}";
echo $char;  // Output: ቦ

Ruby:

char = "\u{1266}"
puts char  # Output: ቦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001266";  /* Display: ቦ */
}

HTML Decimal:

<p>HTML decimal: &#4710;</p>  <!-- Display: ቦ -->

HTML Hexadecimal:

<p>HTML hex: &#x1266;</p>  <!-- Display: ቦ -->

URL Encoding:

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

Encodings

MD5:

2ff13a2d78197f6cb3034c1a85ab6e22

SHA1:

db0e3a51d85b93b195269dfe1f0a272f418bb699

Base64:

4Ymm