Unicode Finder

"ᖾ" U+15BE(CANADIAN SYLLABICS BLACKFOOT KO)

U+15BE
Όνομα Μπλοκ
Unified Canadian Aboriginal Syllabics
Όνομα
CANADIAN SYLLABICS BLACKFOOT KO

Programming

C
\u15BE
JavaScript
\u15BE
Java
\u15BE
Json
\u15BE
Python
\u15BE
Perl
\x{15BE}
PHP
\x{15BE}
Ruby
\u{15BE}
Rust
\u{15BE}
Go
\u15BE

Web

CSS
\0015BE
HtmlDecimal
ᖾ
HtmlHexadecimal
ᖾ
Url
%E1%96%BE

Code

MD5
6a2e1543df14363c93b79c1384657a6d
Sha1
d6ff921b1a0010397fb652392d0af2b7c15c18a6
Base64
4Za+

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u15BE';
console.log(char);  // Output: ᖾ

Java:

char c = '\u15BE';
System.out.println(c);  // Output: ᖾ

JSON:

{"text": "\u15BE"}  // Value: ᖾ

Python:

char = '\u15BE'
print(char)  # Output: ᖾ

Perl:

my $char = "\x{15BE}";
print $char;  # Output: ᖾ

PHP:

$char = "\x{15BE}";
echo $char;  // Output: ᖾ

Ruby:

char = "\u{15BE}"
puts char  # Output: ᖾ

Rust:

let c = '\u{15BE}';
println!("{}", c);  // Output: ᖾ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0015BE";  /* Display: ᖾ */
}

HTML Decimal:

<p>HTML decimal: &#5566;</p>  <!-- Display: ᖾ -->

HTML Hexadecimal:

<p>HTML hex: &#x15BE;</p>  <!-- Display: ᖾ -->

URL Encoding:

// ᖾ URL encoding
https://unicodefinder.com/search.php?query=%E1%96%BE

Encodings

MD5:

6a2e1543df14363c93b79c1384657a6d

SHA1:

d6ff921b1a0010397fb652392d0af2b7c15c18a6

Base64:

4Za+