Unicode Finder

"€" U+20AC(EURO SIGN)

U+20AC
Nama Blok
Currency Symbols
Nama
EURO SIGN

Programming

C
\u20AC
JavaScript
\u20AC
Java
\u20AC
Json
\u20AC
Python
\u20AC
Perl
\x{20AC}
PHP
\x{20AC}
Ruby
\u{20AC}
Rust
\u{20AC}
Go
\u20AC

Web

CSS
\0020AC
HtmlDecimal
€
HtmlHexadecimal
€
Url
%E2%82%AC

Code

MD5
bca53fde466a76b7bee3e18997e94a7a
Sha1
83fc867a6ea7bf1ca105aec9a1b81234e0aec40e
Base64
4oKs

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u20AC';
console.log(char);  // Output: €

Java:

char c = '\u20AC';
System.out.println(c);  // Output: €

JSON:

{"text": "\u20AC"}  // Value: €

Python:

char = '\u20AC'
print(char)  # Output: €

Perl:

my $char = "\x{20AC}";
print $char;  # Output: €

PHP:

$char = "\x{20AC}";
echo $char;  // Output: €

Ruby:

char = "\u{20AC}"
puts char  # Output: €

Rust:

let c = '\u{20AC}';
println!("{}", c);  // Output: €

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0020AC";  /* Display: € */
}

HTML Decimal:

<p>HTML decimal: &#8364;</p>  <!-- Display: € -->

HTML Hexadecimal:

<p>HTML hex: &#x20AC;</p>  <!-- Display: € -->

URL Encoding:

// € URL encoding
https://unicodefinder.com/search.php?query=%E2%82%AC

Encodings

MD5:

bca53fde466a76b7bee3e18997e94a7a

SHA1:

83fc867a6ea7bf1ca105aec9a1b81234e0aec40e

Base64:

4oKs