Unicode Finder

"ᔒ" U+1512(CANADIAN SYLLABICS SHII)

U+1512
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS SHII

Programming

C
\u1512
JavaScript
\u1512
Java
\u1512
Json
\u1512
Python
\u1512
Perl
\x{1512}
PHP
\x{1512}
Ruby
\u{1512}
Rust
\u{1512}
Go
\u1512

Web

CSS
\001512
HtmlDecimal
ᔒ
HtmlHexadecimal
ᔒ
Url
%E1%94%92

Code

MD5
67a0c5ceaf49ad058e0994fe2df84654
Sha1
d5c66555eb9c94ff62b26234f257ffa27116c240
Base64
4ZSS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1512';
console.log(char);  // Output: ᔒ

Java:

char c = '\u1512';
System.out.println(c);  // Output: ᔒ

JSON:

{"text": "\u1512"}  // Value: ᔒ

Python:

char = '\u1512'
print(char)  # Output: ᔒ

Perl:

my $char = "\x{1512}";
print $char;  # Output: ᔒ

PHP:

$char = "\x{1512}";
echo $char;  // Output: ᔒ

Ruby:

char = "\u{1512}"
puts char  # Output: ᔒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001512";  /* Display: ᔒ */
}

HTML Decimal:

<p>HTML decimal: &#5394;</p>  <!-- Display: ᔒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1512;</p>  <!-- Display: ᔒ -->

URL Encoding:

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

Encodings

MD5:

67a0c5ceaf49ad058e0994fe2df84654

SHA1:

d5c66555eb9c94ff62b26234f257ffa27116c240

Base64:

4ZSS