Unicode Finder

"᜔" U+1714(TAGALOG SIGN VIRAMA)

U+1714
Nama Blok
Tagalog
Nama
TAGALOG SIGN VIRAMA

Programming

C
\u1714
JavaScript
\u1714
Java
\u1714
Json
\u1714
Python
\u1714
Perl
\x{1714}
PHP
\x{1714}
Ruby
\u{1714}
Rust
\u{1714}
Go
\u1714

Web

CSS
\001714
HtmlDecimal
᜔
HtmlHexadecimal
᜔
Url
%E1%9C%94

Code

MD5
581af4950542d77f1d38a8fd2e66292b
Sha1
80e5d3859e79b0e487f06cd11f1386ae1ef8801e
Base64
4ZyU

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1714';
console.log(char);  // Output: ᜔

Java:

char c = '\u1714';
System.out.println(c);  // Output: ᜔

JSON:

{"text": "\u1714"}  // Value: ᜔

Python:

char = '\u1714'
print(char)  # Output: ᜔

Perl:

my $char = "\x{1714}";
print $char;  # Output: ᜔

PHP:

$char = "\x{1714}";
echo $char;  // Output: ᜔

Ruby:

char = "\u{1714}"
puts char  # Output: ᜔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001714";  /* Display: ᜔ */
}

HTML Decimal:

<p>HTML decimal: &#5908;</p>  <!-- Display: ᜔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1714;</p>  <!-- Display: ᜔ -->

URL Encoding:

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

Encodings

MD5:

581af4950542d77f1d38a8fd2e66292b

SHA1:

80e5d3859e79b0e487f06cd11f1386ae1ef8801e

Base64:

4ZyU