Unicode Finder

"✆" U+2706(TELEPHONE LOCATION SIGN)

U+2706
Block Name
Dingbats
Name
TELEPHONE LOCATION SIGN

Programming

C
\u2706
JavaScript
\u2706
Java
\u2706
Json
\u2706
Python
\u2706
Perl
\x{2706}
PHP
\x{2706}
Ruby
\u{2706}
Rust
\u{2706}
Go
\u2706

Web

CSS
\002706
HtmlDecimal
✆
HtmlHexadecimal
✆
Url
%E2%9C%86

Code

MD5
1f0b35720a376a5a4f8a1423b62e6515
Sha1
90a617a10e1a99fd0e74afcf155ce4759dd58c55
Base64
4pyG

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2706';
console.log(char);  // Output: ✆

Java:

char c = '\u2706';
System.out.println(c);  // Output: ✆

JSON:

{"text": "\u2706"}  // Value: ✆

Python:

char = '\u2706'
print(char)  # Output: ✆

Perl:

my $char = "\x{2706}";
print $char;  # Output: ✆

PHP:

$char = "\x{2706}";
echo $char;  // Output: ✆

Ruby:

char = "\u{2706}"
puts char  # Output: ✆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002706";  /* Display: ✆ */
}

HTML Decimal:

<p>HTML decimal: &#9990;</p>  <!-- Display: ✆ -->

HTML Hexadecimal:

<p>HTML hex: &#x2706;</p>  <!-- Display: ✆ -->

URL Encoding:

// ✆ URL encoding
https://unicodefinder.com/search.php?query=%E2%9C%86

Encodings

MD5:

1f0b35720a376a5a4f8a1423b62e6515

SHA1:

90a617a10e1a99fd0e74afcf155ce4759dd58c55

Base64:

4pyG