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: $
CSS:
/* CSS content property */
.element::before {
content: "\000024"; /* Display: $ */
}
HTML Decimal:
<p>HTML decimal: $</p> <!-- Display: $ -->
HTML Hexadecimal:
<p>HTML hex: $</p> <!-- Display: $ -->
URL Encoding:
// $ URL encoding
https://unicodefinder.com/search.php?query=%24
MD5:
c3e97dd6e97fb5125688c97f36720cbe
SHA1:
3cdf2936da2fc556bfa533ab1eb59ce710ac80e5
Base64:
JA==