Unicode Finder

"ᳫ" U+1CEB(VEDIC SIGN ANUSVARA VAMAGOMUKHA)

U+1CEB
שם בלוק
Vedic Extensions
שם
VEDIC SIGN ANUSVARA VAMAGOMUKHA

Programming

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

Web

CSS
\001CEB
HtmlDecimal
ᳫ
HtmlHexadecimal
ᳫ
Url
%E1%B3%AB

Code

MD5
486550d646703e51b835fa8bce787e20
Sha1
9523c1a4c52c7200b20509f6c66da9dded6bd26a
Base64
4bOr

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1CEB';
console.log(char);  // Output: ᳫ

Java:

char c = '\u1CEB';
System.out.println(c);  // Output: ᳫ

JSON:

{"text": "\u1CEB"}  // Value: ᳫ

Python:

char = '\u1CEB'
print(char)  # Output: ᳫ

Perl:

my $char = "\x{1CEB}";
print $char;  # Output: ᳫ

PHP:

$char = "\x{1CEB}";
echo $char;  // Output: ᳫ

Ruby:

char = "\u{1CEB}"
puts char  # Output: ᳫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7403;</p>  <!-- Display: ᳫ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CEB;</p>  <!-- Display: ᳫ -->

URL Encoding:

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

Encodings

MD5:

486550d646703e51b835fa8bce787e20

SHA1:

9523c1a4c52c7200b20509f6c66da9dded6bd26a

Base64:

4bOr