Unicode Finder

"¤" U+00A4(CURRENCY SIGN)

¤
U+00A4
Block Name
Latin-1 Supplement
Name
CURRENCY SIGN

Programming

C
\u00A4
JavaScript
\u00A4
Java
\u00A4
Json
\u00A4
Python
\u00A4
Perl
\x{00A4}
PHP
\x{00A4}
Ruby
\u{00A4}
Rust
\u{A4}
Go
\u00A4

Web

CSS
\0000A4
HtmlDecimal
¤
HtmlHexadecimal
¤
Url
%C2%A4

Code

MD5
b450fdef2453e92c31263a70f14fbd7b
Sha1
fe33a6b4de93e363cf1620f7228df4164d913fbf
Base64
wqQ=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00A4';
console.log(char);  // Output: ¤

Java:

char c = '\u00A4';
System.out.println(c);  // Output: ¤

JSON:

{"text": "\u00A4"}  // Value: ¤

Python:

char = '\u00A4'
print(char)  # Output: ¤

Perl:

my $char = "\x{00A4}";
print $char;  # Output: ¤

PHP:

$char = "\x{00A4}";
echo $char;  // Output: ¤

Ruby:

char = "\u{00A4}"
puts char  # Output: ¤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000A4";  /* Display: ¤ */
}

HTML Decimal:

<p>HTML decimal: &#164;</p>  <!-- Display: ¤ -->

HTML Hexadecimal:

<p>HTML hex: &#x00A4;</p>  <!-- Display: ¤ -->

URL Encoding:

// ¤ URL encoding
https://unicodefinder.com/search.php?query=%C2%A4

Encodings

MD5:

b450fdef2453e92c31263a70f14fbd7b

SHA1:

fe33a6b4de93e363cf1620f7228df4164d913fbf

Base64:

wqQ=

© 2025 Unicode Finder

¤ U+00A4 CURRENCY SIGN Unicode Character - Unicode Finder

Contact: d2@fanqiang.me