Unicode Finder

"ᗏ" U+15CF(CANADIAN SYLLABICS CARRIER RA)

U+15CF
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS CARRIER RA

Programming

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

Web

CSS
\0015CF
HtmlDecimal
ᗏ
HtmlHexadecimal
ᗏ
Url
%E1%97%8F

Code

MD5
98a0df05bad35d8c13204e6453c5a0f3
Sha1
6518623cc63c3820d9508e16f632122c80534842
Base64
4ZeP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u15CF';
console.log(char);  // Output: ᗏ

Java:

char c = '\u15CF';
System.out.println(c);  // Output: ᗏ

JSON:

{"text": "\u15CF"}  // Value: ᗏ

Python:

char = '\u15CF'
print(char)  # Output: ᗏ

Perl:

my $char = "\x{15CF}";
print $char;  # Output: ᗏ

PHP:

$char = "\x{15CF}";
echo $char;  // Output: ᗏ

Ruby:

char = "\u{15CF}"
puts char  # Output: ᗏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5583;</p>  <!-- Display: ᗏ -->

HTML Hexadecimal:

<p>HTML hex: &#x15CF;</p>  <!-- Display: ᗏ -->

URL Encoding:

// ᗏ URL encoding
https://unicodefinder.com/search.php?query=%E1%97%8F

Encodings

MD5:

98a0df05bad35d8c13204e6453c5a0f3

SHA1:

6518623cc63c3820d9508e16f632122c80534842

Base64:

4ZeP