Unicode Finder

"ᕜ" U+155C(CANADIAN SYLLABICS WEST-CREE FWAA)

U+155C
Nume Bloc
Unified Canadian Aboriginal Syllabics
Nume
CANADIAN SYLLABICS WEST-CREE FWAA

Programming

C
\u155C
JavaScript
\u155C
Java
\u155C
Json
\u155C
Python
\u155C
Perl
\x{155C}
PHP
\x{155C}
Ruby
\u{155C}
Rust
\u{155C}
Go
\u155C

Web

CSS
\00155C
HtmlDecimal
ᕜ
HtmlHexadecimal
ᕜ
Url
%E1%95%9C

Code

MD5
eae0a9307fac9290aed281c3d016b7df
Sha1
4534fe69fcdeb51b6fd85bbfe3471540b6a00d75
Base64
4ZWc

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u155C';
console.log(char);  // Output: ᕜ

Java:

char c = '\u155C';
System.out.println(c);  // Output: ᕜ

JSON:

{"text": "\u155C"}  // Value: ᕜ

Python:

char = '\u155C'
print(char)  # Output: ᕜ

Perl:

my $char = "\x{155C}";
print $char;  # Output: ᕜ

PHP:

$char = "\x{155C}";
echo $char;  // Output: ᕜ

Ruby:

char = "\u{155C}"
puts char  # Output: ᕜ

Rust:

let c = '\u{155C}';
println!("{}", c);  // Output: ᕜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00155C";  /* Display: ᕜ */
}

HTML Decimal:

<p>HTML decimal: &#5468;</p>  <!-- Display: ᕜ -->

HTML Hexadecimal:

<p>HTML hex: &#x155C;</p>  <!-- Display: ᕜ -->

URL Encoding:

// ᕜ URL encoding
https://unicodefinder.com/search.php?query=%E1%95%9C

Encodings

MD5:

eae0a9307fac9290aed281c3d016b7df

SHA1:

4534fe69fcdeb51b6fd85bbfe3471540b6a00d75

Base64:

4ZWc