Unicode Finder

"⎉" U+2389(CIRCLED HORIZONTAL BAR WITH NOTCH)

U+2389
Tên Khối
Miscellaneous Technical
Tên
CIRCLED HORIZONTAL BAR WITH NOTCH

Programming

C
\u2389
JavaScript
\u2389
Java
\u2389
Json
\u2389
Python
\u2389
Perl
\x{2389}
PHP
\x{2389}
Ruby
\u{2389}
Rust
\u{2389}
Go
\u2389

Web

CSS
\002389
HtmlDecimal
⎉
HtmlHexadecimal
⎉
Url
%E2%8E%89

Code

MD5
a695c70eab1ace962a07a59fda5c7a3f
Sha1
7845e5a87556ed25bcb602a032999ed6b2535a39
Base64
4o6J

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u2389';
console.log(char);  // Output: ⎉

Java:

char c = '\u2389';
System.out.println(c);  // Output: ⎉

JSON:

{"text": "\u2389"}  // Value: ⎉

Python:

char = '\u2389'
print(char)  # Output: ⎉

Perl:

my $char = "\x{2389}";
print $char;  # Output: ⎉

PHP:

$char = "\x{2389}";
echo $char;  // Output: ⎉

Ruby:

char = "\u{2389}"
puts char  # Output: ⎉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002389";  /* Display: ⎉ */
}

HTML Decimal:

<p>HTML decimal: &#9097;</p>  <!-- Display: ⎉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2389;</p>  <!-- Display: ⎉ -->

URL Encoding:

// ⎉ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%89

Encodings

MD5:

a695c70eab1ace962a07a59fda5c7a3f

SHA1:

7845e5a87556ed25bcb602a032999ed6b2535a39

Base64:

4o6J