Unicode Finder

"⛲" U+26F2(FOUNTAIN)

U+26F2
Block Name
Miscellaneous Symbols
Name
FOUNTAIN

Programming

C
\u26F2
JavaScript
\u26F2
Java
\u26F2
Json
\u26F2
Python
\u26F2
Perl
\x{26F2}
PHP
\x{26F2}
Ruby
\u{26F2}
Rust
\u{26F2}
Go
\u26F2

Web

CSS
\0026F2
HtmlDecimal
⛲
HtmlHexadecimal
⛲
Url
%E2%9B%B2

Code

MD5
8f6545d33c1378359063735901cc72ea
Sha1
92b79b1fc6f228c249e6e2218aaedee165040c67
Base64
4puy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26F2';
console.log(char);  // Output: ⛲

Java:

char c = '\u26F2';
System.out.println(c);  // Output: ⛲

JSON:

{"text": "\u26F2"}  // Value: ⛲

Python:

char = '\u26F2'
print(char)  # Output: ⛲

Perl:

my $char = "\x{26F2}";
print $char;  # Output: ⛲

PHP:

$char = "\x{26F2}";
echo $char;  // Output: ⛲

Ruby:

char = "\u{26F2}"
puts char  # Output: ⛲

Rust:

let c = '\u{26F2}';
println!("{}", c);  // Output: ⛲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026F2";  /* Display: ⛲ */
}

HTML Decimal:

<p>HTML decimal: &#9970;</p>  <!-- Display: ⛲ -->

HTML Hexadecimal:

<p>HTML hex: &#x26F2;</p>  <!-- Display: ⛲ -->

URL Encoding:

// ⛲ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%B2

Encodings

MD5:

8f6545d33c1378359063735901cc72ea

SHA1:

92b79b1fc6f228c249e6e2218aaedee165040c67

Base64:

4puy