Unicode Finder

"$" U+0024(DOLLAR SIGN)

$
U+0024
Block Name
Basic Latin
Name
DOLLAR SIGN

Programming

C
\u0024
JavaScript
\u0024
Java
\u0024
Json
\u0024
Python
\u0024
Perl
\x{0024}
PHP
\x{0024}
Ruby
\u{0024}
Rust
\u{24}
Go
\u0024

Web

CSS
\000024
HtmlDecimal
$
HtmlHexadecimal
$
Url
%24

Code

MD5
c3e97dd6e97fb5125688c97f36720cbe
Sha1
3cdf2936da2fc556bfa533ab1eb59ce710ac80e5
Base64
JA==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0024';
console.log(char);  // Output: $

Java:

char c = '\u0024';
System.out.println(c);  // Output: $

JSON:

{"text": "\u0024"}  // Value: $

Python:

char = '\u0024'
print(char)  # Output: $

Perl:

my $char = "\x{0024}";
print $char;  # Output: $

PHP:

$char = "\x{0024}";
echo $char;  // Output: $

Ruby:

char = "\u{0024}"
puts char  # Output: $

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000024";  /* Display: $ */
}

HTML Decimal:

<p>HTML decimal: &#36;</p>  <!-- Display: $ -->

HTML Hexadecimal:

<p>HTML hex: &#x0024;</p>  <!-- Display: $ -->

URL Encoding:

// $ URL encoding
https://unicodefinder.com/search.php?query=%24

Encodings

MD5:

c3e97dd6e97fb5125688c97f36720cbe

SHA1:

3cdf2936da2fc556bfa533ab1eb59ce710ac80e5

Base64:

JA==