Unicode Finder

"ቧ" U+1267(ETHIOPIC SYLLABLE BWA)

U+1267
بلاک کا نام
Ethiopic
نام
ETHIOPIC SYLLABLE BWA

Programming

C
\u1267
JavaScript
\u1267
Java
\u1267
Json
\u1267
Python
\u1267
Perl
\x{1267}
PHP
\x{1267}
Ruby
\u{1267}
Rust
\u{1267}
Go
\u1267

Web

CSS
\001267
HtmlDecimal
ቧ
HtmlHexadecimal
ቧ
Url
%E1%89%A7

Code

MD5
19d8bef32d5b3a67a6b99c837694d2a2
Sha1
3509aeb778584f022afe972bc07b1def18161ab0
Base64
4Ymn

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

Programming Languages

C:

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

JavaScript:

const char = '\u1267';
console.log(char);  // Output: ቧ

Java:

char c = '\u1267';
System.out.println(c);  // Output: ቧ

JSON:

{"text": "\u1267"}  // Value: ቧ

Python:

char = '\u1267'
print(char)  # Output: ቧ

Perl:

my $char = "\x{1267}";
print $char;  # Output: ቧ

PHP:

$char = "\x{1267}";
echo $char;  // Output: ቧ

Ruby:

char = "\u{1267}"
puts char  # Output: ቧ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001267";  /* Display: ቧ */
}

HTML Decimal:

<p>HTML decimal: &#4711;</p>  <!-- Display: ቧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1267;</p>  <!-- Display: ቧ -->

URL Encoding:

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

Encodings

MD5:

19d8bef32d5b3a67a6b99c837694d2a2

SHA1:

3509aeb778584f022afe972bc07b1def18161ab0

Base64:

4Ymn