Unicode Finder

"ቡ" U+1261(ETHIOPIC SYLLABLE BU)

U+1261
Nombre del Bloque
Ethiopic
Nombre
ETHIOPIC SYLLABLE BU

Programming

C
\u1261
JavaScript
\u1261
Java
\u1261
Json
\u1261
Python
\u1261
Perl
\x{1261}
PHP
\x{1261}
Ruby
\u{1261}
Rust
\u{1261}
Go
\u1261

Web

CSS
\001261
HtmlDecimal
ቡ
HtmlHexadecimal
ቡ
Url
%E1%89%A1

Code

MD5
0fd40821222d79c3da6e0ade28ed7eef
Sha1
1bb495865bbabb5b2d08f301a8307f6ddfb7de67
Base64
4Ymh

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1261';
console.log(char);  // Output: ቡ

Java:

char c = '\u1261';
System.out.println(c);  // Output: ቡ

JSON:

{"text": "\u1261"}  // Value: ቡ

Python:

char = '\u1261'
print(char)  # Output: ቡ

Perl:

my $char = "\x{1261}";
print $char;  # Output: ቡ

PHP:

$char = "\x{1261}";
echo $char;  // Output: ቡ

Ruby:

char = "\u{1261}"
puts char  # Output: ቡ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001261";  /* Display: ቡ */
}

HTML Decimal:

<p>HTML decimal: &#4705;</p>  <!-- Display: ቡ -->

HTML Hexadecimal:

<p>HTML hex: &#x1261;</p>  <!-- Display: ቡ -->

URL Encoding:

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

Encodings

MD5:

0fd40821222d79c3da6e0ade28ed7eef

SHA1:

1bb495865bbabb5b2d08f301a8307f6ddfb7de67

Base64:

4Ymh