Unicode Finder

"ቱ" U+1271(ETHIOPIC SYLLABLE TU)

U+1271
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE TU

Programming

C
\u1271
JavaScript
\u1271
Java
\u1271
Json
\u1271
Python
\u1271
Perl
\x{1271}
PHP
\x{1271}
Ruby
\u{1271}
Rust
\u{1271}
Go
\u1271

Web

CSS
\001271
HtmlDecimal
ቱ
HtmlHexadecimal
ቱ
Url
%E1%89%B1

Code

MD5
a3920f6d906bf15a16dcc6114df2c526
Sha1
bee65a3ab47e9293bff7682cd2e4696317a72a4f
Base64
4Ymx

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u1271';
console.log(char);  // Output: ቱ

Java:

char c = '\u1271';
System.out.println(c);  // Output: ቱ

JSON:

{"text": "\u1271"}  // Value: ቱ

Python:

char = '\u1271'
print(char)  # Output: ቱ

Perl:

my $char = "\x{1271}";
print $char;  # Output: ቱ

PHP:

$char = "\x{1271}";
echo $char;  // Output: ቱ

Ruby:

char = "\u{1271}"
puts char  # Output: ቱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001271";  /* Display: ቱ */
}

HTML Decimal:

<p>HTML decimal: &#4721;</p>  <!-- Display: ቱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1271;</p>  <!-- Display: ቱ -->

URL Encoding:

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

Encodings

MD5:

a3920f6d906bf15a16dcc6114df2c526

SHA1:

bee65a3ab47e9293bff7682cd2e4696317a72a4f

Base64:

4Ymx