Unicode Finder

"༤" U+0F24(TIBETAN DIGIT FOUR)

U+0F24
ব্লক নাম
Tibetan
নাম
TIBETAN DIGIT FOUR

Programming

C
\u0F24
JavaScript
\u0F24
Java
\u0F24
Json
\u0F24
Python
\u0F24
Perl
\x{0F24}
PHP
\x{0F24}
Ruby
\u{0F24}
Rust
\u{F24}
Go
\u0F24

Web

CSS
\000F24
HtmlDecimal
༤
HtmlHexadecimal
༤
Url
%E0%BC%A4

Code

MD5
c75159687839b8daff9eda098932e428
Sha1
99b1f7b4c6ccf560cded8a0acfdd2bcb3cedd395
Base64
4Lyk

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u0F24';
console.log(char);  // Output: ༤

Java:

char c = '\u0F24';
System.out.println(c);  // Output: ༤

JSON:

{"text": "\u0F24"}  // Value: ༤

Python:

char = '\u0F24'
print(char)  # Output: ༤

Perl:

my $char = "\x{0F24}";
print $char;  # Output: ༤

PHP:

$char = "\x{0F24}";
echo $char;  // Output: ༤

Ruby:

char = "\u{0F24}"
puts char  # Output: ༤

Rust:

let c = '\u{F24}';
println!("{}", c);  // Output: ༤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000F24";  /* Display: ༤ */
}

HTML Decimal:

<p>HTML decimal: &#3876;</p>  <!-- Display: ༤ -->

HTML Hexadecimal:

<p>HTML hex: &#x0F24;</p>  <!-- Display: ༤ -->

URL Encoding:

// ༤ URL encoding
https://unicodefinder.com/search.php?query=%E0%BC%A4

Encodings

MD5:

c75159687839b8daff9eda098932e428

SHA1:

99b1f7b4c6ccf560cded8a0acfdd2bcb3cedd395

Base64:

4Lyk