Unicode Finder

"ᝬ" U+176C(TAGBANWA LETTER YA)

U+176C
Nama Blok
Tagbanwa
Nama
TAGBANWA LETTER YA

Programming

C
\u176C
JavaScript
\u176C
Java
\u176C
Json
\u176C
Python
\u176C
Perl
\x{176C}
PHP
\x{176C}
Ruby
\u{176C}
Rust
\u{176C}
Go
\u176C

Web

CSS
\00176C
HtmlDecimal
ᝬ
HtmlHexadecimal
ᝬ
Url
%E1%9D%AC

Code

MD5
c7de1a71899a11712156efeb397314cf
Sha1
6c6f3de6ea0e76d0384dcbddab1e1e4027626bf3
Base64
4Z2s

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u176C';
console.log(char);  // Output: ᝬ

Java:

char c = '\u176C';
System.out.println(c);  // Output: ᝬ

JSON:

{"text": "\u176C"}  // Value: ᝬ

Python:

char = '\u176C'
print(char)  # Output: ᝬ

Perl:

my $char = "\x{176C}";
print $char;  # Output: ᝬ

PHP:

$char = "\x{176C}";
echo $char;  // Output: ᝬ

Ruby:

char = "\u{176C}"
puts char  # Output: ᝬ

Rust:

let c = '\u{176C}';
println!("{}", c);  // Output: ᝬ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00176C";  /* Display: ᝬ */
}

HTML Decimal:

<p>HTML decimal: &#5996;</p>  <!-- Display: ᝬ -->

HTML Hexadecimal:

<p>HTML hex: &#x176C;</p>  <!-- Display: ᝬ -->

URL Encoding:

// ᝬ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%AC

Encodings

MD5:

c7de1a71899a11712156efeb397314cf

SHA1:

6c6f3de6ea0e76d0384dcbddab1e1e4027626bf3

Base64:

4Z2s