Unicode Finder

"ᔇ" U+1507(CANADIAN SYLLABICS SW)

U+1507
區塊名稱
Unified Canadian Aboriginal Syllabics
名稱
CANADIAN SYLLABICS SW

Programming

C
\u1507
JavaScript
\u1507
Java
\u1507
Json
\u1507
Python
\u1507
Perl
\x{1507}
PHP
\x{1507}
Ruby
\u{1507}
Rust
\u{1507}
Go
\u1507

Web

CSS
\001507
HtmlDecimal
ᔇ
HtmlHexadecimal
ᔇ
Url
%E1%94%87

Code

MD5
37fe2717ed9417103f2fa2c55fdb7399
Sha1
4e756c504dd1d3eb9d35f158e69f44f7b2a2c675
Base64
4ZSH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1507';
console.log(char);  // Output: ᔇ

Java:

char c = '\u1507';
System.out.println(c);  // Output: ᔇ

JSON:

{"text": "\u1507"}  // Value: ᔇ

Python:

char = '\u1507'
print(char)  # Output: ᔇ

Perl:

my $char = "\x{1507}";
print $char;  # Output: ᔇ

PHP:

$char = "\x{1507}";
echo $char;  // Output: ᔇ

Ruby:

char = "\u{1507}"
puts char  # Output: ᔇ

Rust:

let c = '\u{1507}';
println!("{}", c);  // Output: ᔇ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001507";  /* Display: ᔇ */
}

HTML Decimal:

<p>HTML decimal: &#5383;</p>  <!-- Display: ᔇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1507;</p>  <!-- Display: ᔇ -->

URL Encoding:

// ᔇ URL encoding
https://unicodefinder.com/search.php?query=%E1%94%87

Encodings

MD5:

37fe2717ed9417103f2fa2c55fdb7399

SHA1:

4e756c504dd1d3eb9d35f158e69f44f7b2a2c675

Base64:

4ZSH