Unicode Finder

"␔" U+2414(SYMBOL FOR DEVICE CONTROL FOUR)

U+2414
區塊名稱
Control Pictures
名稱
SYMBOL FOR DEVICE CONTROL FOUR

Programming

C
\u2414
JavaScript
\u2414
Java
\u2414
Json
\u2414
Python
\u2414
Perl
\x{2414}
PHP
\x{2414}
Ruby
\u{2414}
Rust
\u{2414}
Go
\u2414

Web

CSS
\002414
HtmlDecimal
␔
HtmlHexadecimal
␔
Url
%E2%90%94

Code

MD5
521b6581b373e0bc2494109ee73e8794
Sha1
8223d4c55119299c527a82e971982f879ec6c1f7
Base64
4pCU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2414';
console.log(char);  // Output: ␔

Java:

char c = '\u2414';
System.out.println(c);  // Output: ␔

JSON:

{"text": "\u2414"}  // Value: ␔

Python:

char = '\u2414'
print(char)  # Output: ␔

Perl:

my $char = "\x{2414}";
print $char;  # Output: ␔

PHP:

$char = "\x{2414}";
echo $char;  // Output: ␔

Ruby:

char = "\u{2414}"
puts char  # Output: ␔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002414";  /* Display: ␔ */
}

HTML Decimal:

<p>HTML decimal: &#9236;</p>  <!-- Display: ␔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2414;</p>  <!-- Display: ␔ -->

URL Encoding:

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

Encodings

MD5:

521b6581b373e0bc2494109ee73e8794

SHA1:

8223d4c55119299c527a82e971982f879ec6c1f7

Base64:

4pCU