Unicode Finder

"ᔫ" U+152B(CANADIAN SYLLABICS YOO)

U+152B
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS YOO

Programming

C
\u152B
JavaScript
\u152B
Java
\u152B
Json
\u152B
Python
\u152B
Perl
\x{152B}
PHP
\x{152B}
Ruby
\u{152B}
Rust
\u{152B}
Go
\u152B

Web

CSS
\00152B
HtmlDecimal
ᔫ
HtmlHexadecimal
ᔫ
Url
%E1%94%AB

Code

MD5
9807ebbc9d551f15ed7e931b02fecc62
Sha1
017b3a367d2d78985ed0ab5ed4845fbce48fe6fd
Base64
4ZSr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u152B';
console.log(char);  // Output: ᔫ

Java:

char c = '\u152B';
System.out.println(c);  // Output: ᔫ

JSON:

{"text": "\u152B"}  // Value: ᔫ

Python:

char = '\u152B'
print(char)  # Output: ᔫ

Perl:

my $char = "\x{152B}";
print $char;  # Output: ᔫ

PHP:

$char = "\x{152B}";
echo $char;  // Output: ᔫ

Ruby:

char = "\u{152B}"
puts char  # Output: ᔫ

Rust:

let c = '\u{152B}';
println!("{}", c);  // Output: ᔫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00152B";  /* Display: ᔫ */
}

HTML Decimal:

<p>HTML decimal: &#5419;</p>  <!-- Display: ᔫ -->

HTML Hexadecimal:

<p>HTML hex: &#x152B;</p>  <!-- Display: ᔫ -->

URL Encoding:

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

Encodings

MD5:

9807ebbc9d551f15ed7e931b02fecc62

SHA1:

017b3a367d2d78985ed0ab5ed4845fbce48fe6fd

Base64:

4ZSr