Unicode Finder

"⌰" U+2330(TOTAL RUNOUT)

U+2330
Blocknamn
Miscellaneous Technical
Namn
TOTAL RUNOUT

Programming

C
\u2330
JavaScript
\u2330
Java
\u2330
Json
\u2330
Python
\u2330
Perl
\x{2330}
PHP
\x{2330}
Ruby
\u{2330}
Rust
\u{2330}
Go
\u2330

Web

CSS
\002330
HtmlDecimal
⌰
HtmlHexadecimal
⌰
Url
%E2%8C%B0

Code

MD5
86d4ce8becfa2b138a00adae088d03e3
Sha1
f54805814eb44bb31a5aa90513a4e1b41b46975b
Base64
4oyw

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u2330';
console.log(char);  // Output: ⌰

Java:

char c = '\u2330';
System.out.println(c);  // Output: ⌰

JSON:

{"text": "\u2330"}  // Value: ⌰

Python:

char = '\u2330'
print(char)  # Output: ⌰

Perl:

my $char = "\x{2330}";
print $char;  # Output: ⌰

PHP:

$char = "\x{2330}";
echo $char;  // Output: ⌰

Ruby:

char = "\u{2330}"
puts char  # Output: ⌰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002330";  /* Display: ⌰ */
}

HTML Decimal:

<p>HTML decimal: &#9008;</p>  <!-- Display: ⌰ -->

HTML Hexadecimal:

<p>HTML hex: &#x2330;</p>  <!-- Display: ⌰ -->

URL Encoding:

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

Encodings

MD5:

86d4ce8becfa2b138a00adae088d03e3

SHA1:

f54805814eb44bb31a5aa90513a4e1b41b46975b

Base64:

4oyw