Unicode Finder

"₧" U+20A7(PESETA SIGN)

U+20A7
Nama Blok
Currency Symbols
Nama
PESETA SIGN

Programming

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

Web

CSS
\0020A7
HtmlDecimal
₧
HtmlHexadecimal
₧
Url
%E2%82%A7

Code

MD5
115261c556894845a168d80b115a346f
Sha1
6dc274df43c94216a728fb102b42dbf9d62bd8c6
Base64
4oKn

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u20A7';
console.log(char);  // Output: ₧

Java:

char c = '\u20A7';
System.out.println(c);  // Output: ₧

JSON:

{"text": "\u20A7"}  // Value: ₧

Python:

char = '\u20A7'
print(char)  # Output: ₧

Perl:

my $char = "\x{20A7}";
print $char;  # Output: ₧

PHP:

$char = "\x{20A7}";
echo $char;  // Output: ₧

Ruby:

char = "\u{20A7}"
puts char  # Output: ₧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8359;</p>  <!-- Display: ₧ -->

HTML Hexadecimal:

<p>HTML hex: &#x20A7;</p>  <!-- Display: ₧ -->

URL Encoding:

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

Encodings

MD5:

115261c556894845a168d80b115a346f

SHA1:

6dc274df43c94216a728fb102b42dbf9d62bd8c6

Base64:

4oKn