Unicode Finder

"ᖿ" U+15BF(CANADIAN SYLLABICS BLACKFOOT KA)

U+15BF
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS BLACKFOOT KA

Programming

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

Web

CSS
\0015BF
HtmlDecimal
ᖿ
HtmlHexadecimal
ᖿ
Url
%E1%96%BF

Code

MD5
749b614226e0f0d7f2635b5a863e1b03
Sha1
dea1bb7426fe45e9082e03cd4aeebb2f5df69677
Base64
4Za/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u15BF';
console.log(char);  // Output: ᖿ

Java:

char c = '\u15BF';
System.out.println(c);  // Output: ᖿ

JSON:

{"text": "\u15BF"}  // Value: ᖿ

Python:

char = '\u15BF'
print(char)  # Output: ᖿ

Perl:

my $char = "\x{15BF}";
print $char;  # Output: ᖿ

PHP:

$char = "\x{15BF}";
echo $char;  // Output: ᖿ

Ruby:

char = "\u{15BF}"
puts char  # Output: ᖿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5567;</p>  <!-- Display: ᖿ -->

HTML Hexadecimal:

<p>HTML hex: &#x15BF;</p>  <!-- Display: ᖿ -->

URL Encoding:

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

Encodings

MD5:

749b614226e0f0d7f2635b5a863e1b03

SHA1:

dea1bb7426fe45e9082e03cd4aeebb2f5df69677

Base64:

4Za/