Unicode Finder

"ᔟ" U+151F(CANADIAN SYLLABICS SHWOO)

U+151F
שם בלוק
Unified Canadian Aboriginal Syllabics
שם
CANADIAN SYLLABICS SHWOO

Programming

C
\u151F
JavaScript
\u151F
Java
\u151F
Json
\u151F
Python
\u151F
Perl
\x{151F}
PHP
\x{151F}
Ruby
\u{151F}
Rust
\u{151F}
Go
\u151F

Web

CSS
\00151F
HtmlDecimal
ᔟ
HtmlHexadecimal
ᔟ
Url
%E1%94%9F

Code

MD5
668f6233c7621828a3bcf43ec6b771b2
Sha1
5adfd68b995dda473f2770ad435a49c1eb9b4741
Base64
4ZSf

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u151F';
console.log(char);  // Output: ᔟ

Java:

char c = '\u151F';
System.out.println(c);  // Output: ᔟ

JSON:

{"text": "\u151F"}  // Value: ᔟ

Python:

char = '\u151F'
print(char)  # Output: ᔟ

Perl:

my $char = "\x{151F}";
print $char;  # Output: ᔟ

PHP:

$char = "\x{151F}";
echo $char;  // Output: ᔟ

Ruby:

char = "\u{151F}"
puts char  # Output: ᔟ

Rust:

let c = '\u{151F}';
println!("{}", c);  // Output: ᔟ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00151F";  /* Display: ᔟ */
}

HTML Decimal:

<p>HTML decimal: &#5407;</p>  <!-- Display: ᔟ -->

HTML Hexadecimal:

<p>HTML hex: &#x151F;</p>  <!-- Display: ᔟ -->

URL Encoding:

// ᔟ URL encoding
https://unicodefinder.com/search.php?query=%E1%94%9F

Encodings

MD5:

668f6233c7621828a3bcf43ec6b771b2

SHA1:

5adfd68b995dda473f2770ad435a49c1eb9b4741

Base64:

4ZSf