Unicode Finder

"᧟" U+19DF(NEW TAI LUE SIGN LAEV)

U+19DF
ブロック名
New Tai Lue
名前
NEW TAI LUE SIGN LAEV

Programming

C
\u19DF
JavaScript
\u19DF
Java
\u19DF
Json
\u19DF
Python
\u19DF
Perl
\x{19DF}
PHP
\x{19DF}
Ruby
\u{19DF}
Rust
\u{19DF}
Go
\u19DF

Web

CSS
\0019DF
HtmlDecimal
᧟
HtmlHexadecimal
᧟
Url
%E1%A7%9F

Code

MD5
3107d13537bd6e6bb790898610374ab7
Sha1
740a95c319205b33676c57d87828f580d008f04b
Base64
4aef

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u19DF';
console.log(char);  // Output: ᧟

Java:

char c = '\u19DF';
System.out.println(c);  // Output: ᧟

JSON:

{"text": "\u19DF"}  // Value: ᧟

Python:

char = '\u19DF'
print(char)  # Output: ᧟

Perl:

my $char = "\x{19DF}";
print $char;  # Output: ᧟

PHP:

$char = "\x{19DF}";
echo $char;  // Output: ᧟

Ruby:

char = "\u{19DF}"
puts char  # Output: ᧟

Rust:

let c = '\u{19DF}';
println!("{}", c);  // Output: ᧟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0019DF";  /* Display: ᧟ */
}

HTML Decimal:

<p>HTML decimal: &#6623;</p>  <!-- Display: ᧟ -->

HTML Hexadecimal:

<p>HTML hex: &#x19DF;</p>  <!-- Display: ᧟ -->

URL Encoding:

// ᧟ URL encoding
https://unicodefinder.com/search.php?query=%E1%A7%9F

Encodings

MD5:

3107d13537bd6e6bb790898610374ab7

SHA1:

740a95c319205b33676c57d87828f580d008f04b

Base64:

4aef