Unicode Finder

"˹" U+02F9(MODIFIER LETTER BEGIN HIGH TONE)

˹
U+02F9
ब्लॉक का नाम
Spacing Modifier Letters
नाम
MODIFIER LETTER BEGIN HIGH TONE

Programming

C
\u02F9
JavaScript
\u02F9
Java
\u02F9
Json
\u02F9
Python
\u02F9
Perl
\x{02F9}
PHP
\x{02F9}
Ruby
\u{02F9}
Rust
\u{2F9}
Go
\u02F9

Web

CSS
\0002F9
HtmlDecimal
˹
HtmlHexadecimal
˹
Url
%CB%B9

Code

MD5
7a005fb91c7ad60859ba267a012a488a
Sha1
18cf992183372ebe46a038096f8e14f48239425d
Base64
y7k=

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u02F9';
console.log(char);  // Output: ˹

Java:

char c = '\u02F9';
System.out.println(c);  // Output: ˹

JSON:

{"text": "\u02F9"}  // Value: ˹

Python:

char = '\u02F9'
print(char)  # Output: ˹

Perl:

my $char = "\x{02F9}";
print $char;  # Output: ˹

PHP:

$char = "\x{02F9}";
echo $char;  // Output: ˹

Ruby:

char = "\u{02F9}"
puts char  # Output: ˹

Rust:

let c = '\u{2F9}';
println!("{}", c);  // Output: ˹

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0002F9";  /* Display: ˹ */
}

HTML Decimal:

<p>HTML decimal: &#761;</p>  <!-- Display: ˹ -->

HTML Hexadecimal:

<p>HTML hex: &#x02F9;</p>  <!-- Display: ˹ -->

URL Encoding:

// ˹ URL encoding
https://unicodefinder.com/search.php?query=%CB%B9

Encodings

MD5:

7a005fb91c7ad60859ba267a012a488a

SHA1:

18cf992183372ebe46a038096f8e14f48239425d

Base64:

y7k=