Unicode Finder

"␄" U+2404(SYMBOL FOR END OF TRANSMISSION)

U+2404
區塊名稱
Control Pictures
名稱
SYMBOL FOR END OF TRANSMISSION

Programming

C
\u2404
JavaScript
\u2404
Java
\u2404
Json
\u2404
Python
\u2404
Perl
\x{2404}
PHP
\x{2404}
Ruby
\u{2404}
Rust
\u{2404}
Go
\u2404

Web

CSS
\002404
HtmlDecimal
␄
HtmlHexadecimal
␄
Url
%E2%90%84

Code

MD5
a991c8d05ab0ec091ee39cd80d4e3dea
Sha1
9fab034bea72bb56885e8d9f4626def4b8e21cb1
Base64
4pCE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2404';
console.log(char);  // Output: ␄

Java:

char c = '\u2404';
System.out.println(c);  // Output: ␄

JSON:

{"text": "\u2404"}  // Value: ␄

Python:

char = '\u2404'
print(char)  # Output: ␄

Perl:

my $char = "\x{2404}";
print $char;  # Output: ␄

PHP:

$char = "\x{2404}";
echo $char;  // Output: ␄

Ruby:

char = "\u{2404}"
puts char  # Output: ␄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002404";  /* Display: ␄ */
}

HTML Decimal:

<p>HTML decimal: &#9220;</p>  <!-- Display: ␄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2404;</p>  <!-- Display: ␄ -->

URL Encoding:

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

Encodings

MD5:

a991c8d05ab0ec091ee39cd80d4e3dea

SHA1:

9fab034bea72bb56885e8d9f4626def4b8e21cb1

Base64:

4pCE