Unicode Finder

"ᙔ" U+1654(CANADIAN SYLLABICS CARRIER SHU)

U+1654
Blocknamn
Unified Canadian Aboriginal Syllabics
Namn
CANADIAN SYLLABICS CARRIER SHU

Programming

C
\u1654
JavaScript
\u1654
Java
\u1654
Json
\u1654
Python
\u1654
Perl
\x{1654}
PHP
\x{1654}
Ruby
\u{1654}
Rust
\u{1654}
Go
\u1654

Web

CSS
\001654
HtmlDecimal
ᙔ
HtmlHexadecimal
ᙔ
Url
%E1%99%94

Code

MD5
9186425e86b1bafac0e416629e94a19f
Sha1
39d6de334ff527c64890ea275bd52dcb8e567d2e
Base64
4ZmU

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u1654';
console.log(char);  // Output: ᙔ

Java:

char c = '\u1654';
System.out.println(c);  // Output: ᙔ

JSON:

{"text": "\u1654"}  // Value: ᙔ

Python:

char = '\u1654'
print(char)  # Output: ᙔ

Perl:

my $char = "\x{1654}";
print $char;  # Output: ᙔ

PHP:

$char = "\x{1654}";
echo $char;  // Output: ᙔ

Ruby:

char = "\u{1654}"
puts char  # Output: ᙔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001654";  /* Display: ᙔ */
}

HTML Decimal:

<p>HTML decimal: &#5716;</p>  <!-- Display: ᙔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1654;</p>  <!-- Display: ᙔ -->

URL Encoding:

// ᙔ URL encoding
https://unicodefinder.com/search.php?query=%E1%99%94

Encodings

MD5:

9186425e86b1bafac0e416629e94a19f

SHA1:

39d6de334ff527c64890ea275bd52dcb8e567d2e

Base64:

4ZmU