Unicode Finder

"ᣏ" U+18CF(CANADIAN SYLLABICS RWI)

U+18CF
区块名称
Unified Canadian Aboriginal Syllabics Extended
名称
CANADIAN SYLLABICS RWI

Programming

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

Web

CSS
\0018CF
HtmlDecimal
ᣏ
HtmlHexadecimal
ᣏ
Url
%E1%A3%8F

Code

MD5
327272683f3d5ffd620aaf9b9385beb2
Sha1
914b863a62c54b7974aaf60fee65e6ff6135e110
Base64
4aOP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u18CF';
console.log(char);  // Output: ᣏ

Java:

char c = '\u18CF';
System.out.println(c);  // Output: ᣏ

JSON:

{"text": "\u18CF"}  // Value: ᣏ

Python:

char = '\u18CF'
print(char)  # Output: ᣏ

Perl:

my $char = "\x{18CF}";
print $char;  # Output: ᣏ

PHP:

$char = "\x{18CF}";
echo $char;  // Output: ᣏ

Ruby:

char = "\u{18CF}"
puts char  # Output: ᣏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6351;</p>  <!-- Display: ᣏ -->

HTML Hexadecimal:

<p>HTML hex: &#x18CF;</p>  <!-- Display: ᣏ -->

URL Encoding:

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

Encodings

MD5:

327272683f3d5ffd620aaf9b9385beb2

SHA1:

914b863a62c54b7974aaf60fee65e6ff6135e110

Base64:

4aOP