Unicode Finder

"ᝰ" U+1770(TAGBANWA LETTER SA)

U+1770
Nama Blok
Tagbanwa
Nama
TAGBANWA LETTER SA

Programming

C
\u1770
JavaScript
\u1770
Java
\u1770
Json
\u1770
Python
\u1770
Perl
\x{1770}
PHP
\x{1770}
Ruby
\u{1770}
Rust
\u{1770}
Go
\u1770

Web

CSS
\001770
HtmlDecimal
ᝰ
HtmlHexadecimal
ᝰ
Url
%E1%9D%B0

Code

MD5
779a50ede157c3162c4fb6916acd553e
Sha1
57381f5eed004e6280a3b0e64cddb259b7db969a
Base64
4Z2w

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1770';
console.log(char);  // Output: ᝰ

Java:

char c = '\u1770';
System.out.println(c);  // Output: ᝰ

JSON:

{"text": "\u1770"}  // Value: ᝰ

Python:

char = '\u1770'
print(char)  # Output: ᝰ

Perl:

my $char = "\x{1770}";
print $char;  # Output: ᝰ

PHP:

$char = "\x{1770}";
echo $char;  // Output: ᝰ

Ruby:

char = "\u{1770}"
puts char  # Output: ᝰ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001770";  /* Display: ᝰ */
}

HTML Decimal:

<p>HTML decimal: &#6000;</p>  <!-- Display: ᝰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1770;</p>  <!-- Display: ᝰ -->

URL Encoding:

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

Encodings

MD5:

779a50ede157c3162c4fb6916acd553e

SHA1:

57381f5eed004e6280a3b0e64cddb259b7db969a

Base64:

4Z2w