Unicode Finder

"ᜄ" U+1704(TAGALOG LETTER GA)

U+1704
Nama Blok
Tagalog
Nama
TAGALOG LETTER GA

Programming

C
\u1704
JavaScript
\u1704
Java
\u1704
Json
\u1704
Python
\u1704
Perl
\x{1704}
PHP
\x{1704}
Ruby
\u{1704}
Rust
\u{1704}
Go
\u1704

Web

CSS
\001704
HtmlDecimal
ᜄ
HtmlHexadecimal
ᜄ
Url
%E1%9C%84

Code

MD5
4f2ee336f8746c7cce4a5ae6a52d12ce
Sha1
a69ce10eaca3a81d4bfbfb6b9279dad73e550cd4
Base64
4ZyE

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1704';
console.log(char);  // Output: ᜄ

Java:

char c = '\u1704';
System.out.println(c);  // Output: ᜄ

JSON:

{"text": "\u1704"}  // Value: ᜄ

Python:

char = '\u1704'
print(char)  # Output: ᜄ

Perl:

my $char = "\x{1704}";
print $char;  # Output: ᜄ

PHP:

$char = "\x{1704}";
echo $char;  // Output: ᜄ

Ruby:

char = "\u{1704}"
puts char  # Output: ᜄ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001704";  /* Display: ᜄ */
}

HTML Decimal:

<p>HTML decimal: &#5892;</p>  <!-- Display: ᜄ -->

HTML Hexadecimal:

<p>HTML hex: &#x1704;</p>  <!-- Display: ᜄ -->

URL Encoding:

// ᜄ URL encoding
https://unicodefinder.com/search.php?query=%E1%9C%84

Encodings

MD5:

4f2ee336f8746c7cce4a5ae6a52d12ce

SHA1:

a69ce10eaca3a81d4bfbfb6b9279dad73e550cd4

Base64:

4ZyE