Unicode Finder

"ᖒ" U+1592(CANADIAN SYLLABICS NGOO)

U+1592
Nazwa Bloku
Unified Canadian Aboriginal Syllabics
Nazwa
CANADIAN SYLLABICS NGOO

Programming

C
\u1592
JavaScript
\u1592
Java
\u1592
Json
\u1592
Python
\u1592
Perl
\x{1592}
PHP
\x{1592}
Ruby
\u{1592}
Rust
\u{1592}
Go
\u1592

Web

CSS
\001592
HtmlDecimal
ᖒ
HtmlHexadecimal
ᖒ
Url
%E1%96%92

Code

MD5
594432171ab4d8cde7e39a8de43731c1
Sha1
4a5975e8ef51dbd2e9c5231f27caf79a915bd86f
Base64
4ZaS

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1592';
console.log(char);  // Output: ᖒ

Java:

char c = '\u1592';
System.out.println(c);  // Output: ᖒ

JSON:

{"text": "\u1592"}  // Value: ᖒ

Python:

char = '\u1592'
print(char)  # Output: ᖒ

Perl:

my $char = "\x{1592}";
print $char;  # Output: ᖒ

PHP:

$char = "\x{1592}";
echo $char;  // Output: ᖒ

Ruby:

char = "\u{1592}"
puts char  # Output: ᖒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001592";  /* Display: ᖒ */
}

HTML Decimal:

<p>HTML decimal: &#5522;</p>  <!-- Display: ᖒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1592;</p>  <!-- Display: ᖒ -->

URL Encoding:

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

Encodings

MD5:

594432171ab4d8cde7e39a8de43731c1

SHA1:

4a5975e8ef51dbd2e9c5231f27caf79a915bd86f

Base64:

4ZaS