Unicode Finder

"ᐨ" U+1428(CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE)

U+1428
Nome del Blocco
Unified Canadian Aboriginal Syllabics
Nome
CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE

Programming

C
\u1428
JavaScript
\u1428
Java
\u1428
Json
\u1428
Python
\u1428
Perl
\x{1428}
PHP
\x{1428}
Ruby
\u{1428}
Rust
\u{1428}
Go
\u1428

Web

CSS
\001428
HtmlDecimal
ᐨ
HtmlHexadecimal
ᐨ
Url
%E1%90%A8

Code

MD5
f33fd515e2eead543e7e94f75aceee64
Sha1
94d79f72ad534c08c99f809104c9dd8499d10fbc
Base64
4ZCo

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1428';
console.log(char);  // Output: ᐨ

Java:

char c = '\u1428';
System.out.println(c);  // Output: ᐨ

JSON:

{"text": "\u1428"}  // Value: ᐨ

Python:

char = '\u1428'
print(char)  # Output: ᐨ

Perl:

my $char = "\x{1428}";
print $char;  # Output: ᐨ

PHP:

$char = "\x{1428}";
echo $char;  // Output: ᐨ

Ruby:

char = "\u{1428}"
puts char  # Output: ᐨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001428";  /* Display: ᐨ */
}

HTML Decimal:

<p>HTML decimal: &#5160;</p>  <!-- Display: ᐨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1428;</p>  <!-- Display: ᐨ -->

URL Encoding:

// ᐨ URL encoding
https://unicodefinder.com/search.php?query=%E1%90%A8

Encodings

MD5:

f33fd515e2eead543e7e94f75aceee64

SHA1:

94d79f72ad534c08c99f809104c9dd8499d10fbc

Base64:

4ZCo