Unicode Finder

"᳭" U+1CED(VEDIC SIGN TIRYAK)

U+1CED
區塊名稱
Vedic Extensions
名稱
VEDIC SIGN TIRYAK

Programming

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

Web

CSS
\001CED
HtmlDecimal
᳭
HtmlHexadecimal
᳭
Url
%E1%B3%AD

Code

MD5
2442784761301dd2204207c59123c808
Sha1
6375d3df51db015a5a0526a7966d3ea6ed130efc
Base64
4bOt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1CED';
console.log(char);  // Output: ᳭

Java:

char c = '\u1CED';
System.out.println(c);  // Output: ᳭

JSON:

{"text": "\u1CED"}  // Value: ᳭

Python:

char = '\u1CED'
print(char)  # Output: ᳭

Perl:

my $char = "\x{1CED}";
print $char;  # Output: ᳭

PHP:

$char = "\x{1CED}";
echo $char;  // Output: ᳭

Ruby:

char = "\u{1CED}"
puts char  # Output: ᳭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7405;</p>  <!-- Display: ᳭ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CED;</p>  <!-- Display: ᳭ -->

URL Encoding:

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

Encodings

MD5:

2442784761301dd2204207c59123c808

SHA1:

6375d3df51db015a5a0526a7966d3ea6ed130efc

Base64:

4bOt