Unicode Finder

"⨴" U+2A34(MULTIPLICATION SIGN IN LEFT HALF CIRCLE)

U+2A34
Block Name
Supplemental Mathematical Operators
Name
MULTIPLICATION SIGN IN LEFT HALF CIRCLE

Programming

C
\u2A34
JavaScript
\u2A34
Java
\u2A34
Json
\u2A34
Python
\u2A34
Perl
\x{2A34}
PHP
\x{2A34}
Ruby
\u{2A34}
Rust
\u{2A34}
Go
\u2A34

Web

CSS
\002A34
HtmlDecimal
⨴
HtmlHexadecimal
⨴
Url
%E2%A8%B4

Code

MD5
d4b4260de7c6975c6bc75cfa80e1c375
Sha1
4043d1c0cb379d8bf06d6cabf553bd88b39d676e
Base64
4qi0

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A34';
console.log(char);  // Output: ⨴

Java:

char c = '\u2A34';
System.out.println(c);  // Output: ⨴

JSON:

{"text": "\u2A34"}  // Value: ⨴

Python:

char = '\u2A34'
print(char)  # Output: ⨴

Perl:

my $char = "\x{2A34}";
print $char;  # Output: ⨴

PHP:

$char = "\x{2A34}";
echo $char;  // Output: ⨴

Ruby:

char = "\u{2A34}"
puts char  # Output: ⨴

Rust:

let c = '\u{2A34}';
println!("{}", c);  // Output: ⨴

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002A34";  /* Display: ⨴ */
}

HTML Decimal:

<p>HTML decimal: &#10804;</p>  <!-- Display: ⨴ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A34;</p>  <!-- Display: ⨴ -->

URL Encoding:

// ⨴ URL encoding
https://unicodefinder.com/search.php?query=%E2%A8%B4

Encodings

MD5:

d4b4260de7c6975c6bc75cfa80e1c375

SHA1:

4043d1c0cb379d8bf06d6cabf553bd88b39d676e

Base64:

4qi0