Unicode Finder

"ᳯ" U+1CEF(VEDIC SIGN LONG ANUSVARA)

U+1CEF
区块名称
Vedic Extensions
名称
VEDIC SIGN LONG ANUSVARA

Programming

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

Web

CSS
\001CEF
HtmlDecimal
ᳯ
HtmlHexadecimal
ᳯ
Url
%E1%B3%AF

Code

MD5
8edaa67122927dbb87d7de42df735325
Sha1
0c644bb7fd6677e15b658d8538df78f14cd89a6e
Base64
4bOv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1CEF';
console.log(char);  // Output: ᳯ

Java:

char c = '\u1CEF';
System.out.println(c);  // Output: ᳯ

JSON:

{"text": "\u1CEF"}  // Value: ᳯ

Python:

char = '\u1CEF'
print(char)  # Output: ᳯ

Perl:

my $char = "\x{1CEF}";
print $char;  # Output: ᳯ

PHP:

$char = "\x{1CEF}";
echo $char;  // Output: ᳯ

Ruby:

char = "\u{1CEF}"
puts char  # Output: ᳯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7407;</p>  <!-- Display: ᳯ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CEF;</p>  <!-- Display: ᳯ -->

URL Encoding:

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

Encodings

MD5:

8edaa67122927dbb87d7de42df735325

SHA1:

0c644bb7fd6677e15b658d8538df78f14cd89a6e

Base64:

4bOv