Unicode Finder

"⊗" U+2297(CIRCLED TIMES)

U+2297
Nome del Blocco
Mathematical Operators
Nome
CIRCLED TIMES

Programming

C
\u2297
JavaScript
\u2297
Java
\u2297
Json
\u2297
Python
\u2297
Perl
\x{2297}
PHP
\x{2297}
Ruby
\u{2297}
Rust
\u{2297}
Go
\u2297

Web

CSS
\002297
HtmlDecimal
⊗
HtmlHexadecimal
⊗
Url
%E2%8A%97

Code

MD5
434c2ceae5d3385c4cc747b7955a1ed9
Sha1
f120f64b748e9bc85b4e7c19592be588861aea6d
Base64
4oqX

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u2297';
console.log(char);  // Output: ⊗

Java:

char c = '\u2297';
System.out.println(c);  // Output: ⊗

JSON:

{"text": "\u2297"}  // Value: ⊗

Python:

char = '\u2297'
print(char)  # Output: ⊗

Perl:

my $char = "\x{2297}";
print $char;  # Output: ⊗

PHP:

$char = "\x{2297}";
echo $char;  // Output: ⊗

Ruby:

char = "\u{2297}"
puts char  # Output: ⊗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002297";  /* Display: ⊗ */
}

HTML Decimal:

<p>HTML decimal: &#8855;</p>  <!-- Display: ⊗ -->

HTML Hexadecimal:

<p>HTML hex: &#x2297;</p>  <!-- Display: ⊗ -->

URL Encoding:

// ⊗ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%97

Encodings

MD5:

434c2ceae5d3385c4cc747b7955a1ed9

SHA1:

f120f64b748e9bc85b4e7c19592be588861aea6d

Base64:

4oqX