Unicode Finder

"ᜈ" U+1708(TAGALOG LETTER NA)

U+1708
שם בלוק
Tagalog
שם
TAGALOG LETTER NA

Programming

C
\u1708
JavaScript
\u1708
Java
\u1708
Json
\u1708
Python
\u1708
Perl
\x{1708}
PHP
\x{1708}
Ruby
\u{1708}
Rust
\u{1708}
Go
\u1708

Web

CSS
\001708
HtmlDecimal
ᜈ
HtmlHexadecimal
ᜈ
Url
%E1%9C%88

Code

MD5
cb449557a72c73a69dff862deaaa51b2
Sha1
c764e57108a65f465be7d1f11e908c2f16f0e2b7
Base64
4ZyI

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

Programming Languages

C:

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

JavaScript:

const char = '\u1708';
console.log(char);  // Output: ᜈ

Java:

char c = '\u1708';
System.out.println(c);  // Output: ᜈ

JSON:

{"text": "\u1708"}  // Value: ᜈ

Python:

char = '\u1708'
print(char)  # Output: ᜈ

Perl:

my $char = "\x{1708}";
print $char;  # Output: ᜈ

PHP:

$char = "\x{1708}";
echo $char;  // Output: ᜈ

Ruby:

char = "\u{1708}"
puts char  # Output: ᜈ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001708";  /* Display: ᜈ */
}

HTML Decimal:

<p>HTML decimal: &#5896;</p>  <!-- Display: ᜈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1708;</p>  <!-- Display: ᜈ -->

URL Encoding:

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

Encodings

MD5:

cb449557a72c73a69dff862deaaa51b2

SHA1:

c764e57108a65f465be7d1f11e908c2f16f0e2b7

Base64:

4ZyI