Unicode Finder

"␆" U+2406(SYMBOL FOR ACKNOWLEDGE)

U+2406
區塊名稱
Control Pictures
名稱
SYMBOL FOR ACKNOWLEDGE

Programming

C
\u2406
JavaScript
\u2406
Java
\u2406
Json
\u2406
Python
\u2406
Perl
\x{2406}
PHP
\x{2406}
Ruby
\u{2406}
Rust
\u{2406}
Go
\u2406

Web

CSS
\002406
HtmlDecimal
␆
HtmlHexadecimal
␆
Url
%E2%90%86

Code

MD5
ea5a9173e10a6822b4e6a20896dc66f6
Sha1
aca11135311572a7653ae5d53e1db1ca4cf0a4c3
Base64
4pCG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2406';
console.log(char);  // Output: ␆

Java:

char c = '\u2406';
System.out.println(c);  // Output: ␆

JSON:

{"text": "\u2406"}  // Value: ␆

Python:

char = '\u2406'
print(char)  # Output: ␆

Perl:

my $char = "\x{2406}";
print $char;  # Output: ␆

PHP:

$char = "\x{2406}";
echo $char;  // Output: ␆

Ruby:

char = "\u{2406}"
puts char  # Output: ␆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002406";  /* Display: ␆ */
}

HTML Decimal:

<p>HTML decimal: &#9222;</p>  <!-- Display: ␆ -->

HTML Hexadecimal:

<p>HTML hex: &#x2406;</p>  <!-- Display: ␆ -->

URL Encoding:

// ␆ URL encoding
https://unicodefinder.com/search.php?query=%E2%90%86

Encodings

MD5:

ea5a9173e10a6822b4e6a20896dc66f6

SHA1:

aca11135311572a7653ae5d53e1db1ca4cf0a4c3

Base64:

4pCG