Unicode Finder

"ᳮ" U+1CEE(VEDIC SIGN HEXIFORM LONG ANUSVARA)

U+1CEE
Block Name
Vedic Extensions
Name
VEDIC SIGN HEXIFORM LONG ANUSVARA

Programming

C
\u1CEE
JavaScript
\u1CEE
Java
\u1CEE
Json
\u1CEE
Python
\u1CEE
Perl
\x{1CEE}
PHP
\x{1CEE}
Ruby
\u{1CEE}
Rust
\u{1CEE}
Go
\u1CEE

Web

CSS
\001CEE
HtmlDecimal
ᳮ
HtmlHexadecimal
ᳮ
Url
%E1%B3%AE

Code

MD5
20c4367070336e713ef689ebf6f03d26
Sha1
ede6bbd0791ab5144b4f10b32aa5a4ab92534d13
Base64
4bOu

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1CEE';
console.log(char);  // Output: ᳮ

Java:

char c = '\u1CEE';
System.out.println(c);  // Output: ᳮ

JSON:

{"text": "\u1CEE"}  // Value: ᳮ

Python:

char = '\u1CEE'
print(char)  # Output: ᳮ

Perl:

my $char = "\x{1CEE}";
print $char;  # Output: ᳮ

PHP:

$char = "\x{1CEE}";
echo $char;  // Output: ᳮ

Ruby:

char = "\u{1CEE}"
puts char  # Output: ᳮ

Rust:

let c = '\u{1CEE}';
println!("{}", c);  // Output: ᳮ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001CEE";  /* Display: ᳮ */
}

HTML Decimal:

<p>HTML decimal: &#7406;</p>  <!-- Display: ᳮ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CEE;</p>  <!-- Display: ᳮ -->

URL Encoding:

// ᳮ URL encoding
https://unicodefinder.com/search.php?query=%E1%B3%AE

Encodings

MD5:

20c4367070336e713ef689ebf6f03d26

SHA1:

ede6bbd0791ab5144b4f10b32aa5a4ab92534d13

Base64:

4bOu