Unicode Finder

"ባ" U+1263(ETHIOPIC SYLLABLE BAA)

U+1263
بلاک کا نام
Ethiopic
نام
ETHIOPIC SYLLABLE BAA

Programming

C
\u1263
JavaScript
\u1263
Java
\u1263
Json
\u1263
Python
\u1263
Perl
\x{1263}
PHP
\x{1263}
Ruby
\u{1263}
Rust
\u{1263}
Go
\u1263

Web

CSS
\001263
HtmlDecimal
ባ
HtmlHexadecimal
ባ
Url
%E1%89%A3

Code

MD5
863390002dbfa1209ee7b0a2ac287c1d
Sha1
530752fbe86fe66c84b8d728727dd0e0e6c84a3a
Base64
4Ymj

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u1263';
console.log(char);  // Output: ባ

Java:

char c = '\u1263';
System.out.println(c);  // Output: ባ

JSON:

{"text": "\u1263"}  // Value: ባ

Python:

char = '\u1263'
print(char)  # Output: ባ

Perl:

my $char = "\x{1263}";
print $char;  # Output: ባ

PHP:

$char = "\x{1263}";
echo $char;  // Output: ባ

Ruby:

char = "\u{1263}"
puts char  # Output: ባ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001263";  /* Display: ባ */
}

HTML Decimal:

<p>HTML decimal: &#4707;</p>  <!-- Display: ባ -->

HTML Hexadecimal:

<p>HTML hex: &#x1263;</p>  <!-- Display: ባ -->

URL Encoding:

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

Encodings

MD5:

863390002dbfa1209ee7b0a2ac287c1d

SHA1:

530752fbe86fe66c84b8d728727dd0e0e6c84a3a

Base64:

4Ymj