Unicode Finder

"᳞" U+1CDE(VEDIC TONE TWO DOTS BELOW)

U+1CDE
Nama Blok
Vedic Extensions
Nama
VEDIC TONE TWO DOTS BELOW

Programming

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

Web

CSS
\001CDE
HtmlDecimal
᳞
HtmlHexadecimal
᳞
Url
%E1%B3%9E

Code

MD5
7bd42df65d31488bbe5c2ac847fcb8a2
Sha1
cf186778e8fce2b5350363beb85dd4f836f61bdd
Base64
4bOe

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1CDE';
console.log(char);  // Output: ᳞

Java:

char c = '\u1CDE';
System.out.println(c);  // Output: ᳞

JSON:

{"text": "\u1CDE"}  // Value: ᳞

Python:

char = '\u1CDE'
print(char)  # Output: ᳞

Perl:

my $char = "\x{1CDE}";
print $char;  # Output: ᳞

PHP:

$char = "\x{1CDE}";
echo $char;  // Output: ᳞

Ruby:

char = "\u{1CDE}"
puts char  # Output: ᳞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7390;</p>  <!-- Display: ᳞ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CDE;</p>  <!-- Display: ᳞ -->

URL Encoding:

// ᳞ URL encoding
https://unicodefinder.com/search.php?query=%E1%B3%9E

Encodings

MD5:

7bd42df65d31488bbe5c2ac847fcb8a2

SHA1:

cf186778e8fce2b5350363beb85dd4f836f61bdd

Base64:

4bOe