Unicode Finder

"ᕒ" U+1552(CANADIAN SYLLABICS MEDIAL R)

U+1552
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS MEDIAL R

Programming

C
\u1552
JavaScript
\u1552
Java
\u1552
Json
\u1552
Python
\u1552
Perl
\x{1552}
PHP
\x{1552}
Ruby
\u{1552}
Rust
\u{1552}
Go
\u1552

Web

CSS
\001552
HtmlDecimal
ᕒ
HtmlHexadecimal
ᕒ
Url
%E1%95%92

Code

MD5
91f8eb0e74c29ce0ccedf522c134f2fa
Sha1
c20ac85d00228db55e0f0716800893a5bd8b244c
Base64
4ZWS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1552';
console.log(char);  // Output: ᕒ

Java:

char c = '\u1552';
System.out.println(c);  // Output: ᕒ

JSON:

{"text": "\u1552"}  // Value: ᕒ

Python:

char = '\u1552'
print(char)  # Output: ᕒ

Perl:

my $char = "\x{1552}";
print $char;  # Output: ᕒ

PHP:

$char = "\x{1552}";
echo $char;  // Output: ᕒ

Ruby:

char = "\u{1552}"
puts char  # Output: ᕒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001552";  /* Display: ᕒ */
}

HTML Decimal:

<p>HTML decimal: &#5458;</p>  <!-- Display: ᕒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1552;</p>  <!-- Display: ᕒ -->

URL Encoding:

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

Encodings

MD5:

91f8eb0e74c29ce0ccedf522c134f2fa

SHA1:

c20ac85d00228db55e0f0716800893a5bd8b244c

Base64:

4ZWS