Unicode Finder

"ޟ" U+079F(THAANA LETTER DAADHU)

ޟ
U+079F
區塊名稱
Thaana
名稱
THAANA LETTER DAADHU

Programming

C
\u079F
JavaScript
\u079F
Java
\u079F
Json
\u079F
Python
\u079F
Perl
\x{079F}
PHP
\x{079F}
Ruby
\u{079F}
Rust
\u{79F}
Go
\u079F

Web

CSS
\00079F
HtmlDecimal
ޟ
HtmlHexadecimal
ޟ
Url
%DE%9F

Code

MD5
01c70e3277ff6476e84733ae1e652050
Sha1
51c4de3972cdf6395f433619dd75f22c9a73f152
Base64
3p8=

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u079F';
console.log(char);  // Output: ޟ

Java:

char c = '\u079F';
System.out.println(c);  // Output: ޟ

JSON:

{"text": "\u079F"}  // Value: ޟ

Python:

char = '\u079F'
print(char)  # Output: ޟ

Perl:

my $char = "\x{079F}";
print $char;  # Output: ޟ

PHP:

$char = "\x{079F}";
echo $char;  // Output: ޟ

Ruby:

char = "\u{079F}"
puts char  # Output: ޟ

Rust:

let c = '\u{79F}';
println!("{}", c);  // Output: ޟ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00079F";  /* Display: ޟ */
}

HTML Decimal:

<p>HTML decimal: &#1951;</p>  <!-- Display: ޟ -->

HTML Hexadecimal:

<p>HTML hex: &#x079F;</p>  <!-- Display: ޟ -->

URL Encoding:

// ޟ URL encoding
https://unicodefinder.com/search.php?query=%DE%9F

Encodings

MD5:

01c70e3277ff6476e84733ae1e652050

SHA1:

51c4de3972cdf6395f433619dd75f22c9a73f152

Base64:

3p8=