Unicode Finder

"⌣" U+2323(SMILE)

U+2323
Nume Bloc
Miscellaneous Technical
Nume
SMILE

Programming

C
\u2323
JavaScript
\u2323
Java
\u2323
Json
\u2323
Python
\u2323
Perl
\x{2323}
PHP
\x{2323}
Ruby
\u{2323}
Rust
\u{2323}
Go
\u2323

Web

CSS
\002323
HtmlDecimal
⌣
HtmlHexadecimal
⌣
Url
%E2%8C%A3

Code

MD5
2eb713096d3216a95c1ae20e9d08695b
Sha1
b2fb37b90a56daef70da391fd7b426d70da9c02b
Base64
4oyj

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u2323';
console.log(char);  // Output: ⌣

Java:

char c = '\u2323';
System.out.println(c);  // Output: ⌣

JSON:

{"text": "\u2323"}  // Value: ⌣

Python:

char = '\u2323'
print(char)  # Output: ⌣

Perl:

my $char = "\x{2323}";
print $char;  # Output: ⌣

PHP:

$char = "\x{2323}";
echo $char;  // Output: ⌣

Ruby:

char = "\u{2323}"
puts char  # Output: ⌣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002323";  /* Display: ⌣ */
}

HTML Decimal:

<p>HTML decimal: &#8995;</p>  <!-- Display: ⌣ -->

HTML Hexadecimal:

<p>HTML hex: &#x2323;</p>  <!-- Display: ⌣ -->

URL Encoding:

// ⌣ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%A3

Encodings

MD5:

2eb713096d3216a95c1ae20e9d08695b

SHA1:

b2fb37b90a56daef70da391fd7b426d70da9c02b

Base64:

4oyj