Unicode Finder

"ᳬ" U+1CEC(VEDIC SIGN ANUSVARA VAMAGOMUKHA WITH TAIL)

U+1CEC
區塊名稱
Vedic Extensions
名稱
VEDIC SIGN ANUSVARA VAMAGOMUKHA WITH TAIL

Programming

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

Web

CSS
\001CEC
HtmlDecimal
ᳬ
HtmlHexadecimal
ᳬ
Url
%E1%B3%AC

Code

MD5
5ac2790f5542a436b9a667a6d66defb6
Sha1
b2c796bdb07b85d16117eddf1a345191bd5b3926
Base64
4bOs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1CEC';
console.log(char);  // Output: ᳬ

Java:

char c = '\u1CEC';
System.out.println(c);  // Output: ᳬ

JSON:

{"text": "\u1CEC"}  // Value: ᳬ

Python:

char = '\u1CEC'
print(char)  # Output: ᳬ

Perl:

my $char = "\x{1CEC}";
print $char;  # Output: ᳬ

PHP:

$char = "\x{1CEC}";
echo $char;  // Output: ᳬ

Ruby:

char = "\u{1CEC}"
puts char  # Output: ᳬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7404;</p>  <!-- Display: ᳬ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CEC;</p>  <!-- Display: ᳬ -->

URL Encoding:

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

Encodings

MD5:

5ac2790f5542a436b9a667a6d66defb6

SHA1:

b2c796bdb07b85d16117eddf1a345191bd5b3926

Base64:

4bOs