Unicode Finder

"ጆ" U+1306(ETHIOPIC SYLLABLE JO)

U+1306
Название Блока
Ethiopic
Название
ETHIOPIC SYLLABLE JO

Programming

C
\u1306
JavaScript
\u1306
Java
\u1306
Json
\u1306
Python
\u1306
Perl
\x{1306}
PHP
\x{1306}
Ruby
\u{1306}
Rust
\u{1306}
Go
\u1306

Web

CSS
\001306
HtmlDecimal
ጆ
HtmlHexadecimal
ጆ
Url
%E1%8C%86

Code

MD5
6ce26bcd5ff52fe5c76a488d14467e5f
Sha1
54eaf6648f744cab460b5339ba292d9a3d298137
Base64
4YyG

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1306';
console.log(char);  // Output: ጆ

Java:

char c = '\u1306';
System.out.println(c);  // Output: ጆ

JSON:

{"text": "\u1306"}  // Value: ጆ

Python:

char = '\u1306'
print(char)  # Output: ጆ

Perl:

my $char = "\x{1306}";
print $char;  # Output: ጆ

PHP:

$char = "\x{1306}";
echo $char;  // Output: ጆ

Ruby:

char = "\u{1306}"
puts char  # Output: ጆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001306";  /* Display: ጆ */
}

HTML Decimal:

<p>HTML decimal: &#4870;</p>  <!-- Display: ጆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1306;</p>  <!-- Display: ጆ -->

URL Encoding:

// ጆ URL encoding
https://unicodefinder.com/search.php?query=%E1%8C%86

Encodings

MD5:

6ce26bcd5ff52fe5c76a488d14467e5f

SHA1:

54eaf6648f744cab460b5339ba292d9a3d298137

Base64:

4YyG