Unicode Finder

"⎗" U+2397(PREVIOUS PAGE)

U+2397
區塊名稱
Miscellaneous Technical
名稱
PREVIOUS PAGE

Programming

C
\u2397
JavaScript
\u2397
Java
\u2397
Json
\u2397
Python
\u2397
Perl
\x{2397}
PHP
\x{2397}
Ruby
\u{2397}
Rust
\u{2397}
Go
\u2397

Web

CSS
\002397
HtmlDecimal
⎗
HtmlHexadecimal
⎗
Url
%E2%8E%97

Code

MD5
421cf35aa83c14443912a7846f448355
Sha1
c546ace63ca0a108ce6159234df3e2787d8ef3e3
Base64
4o6X

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2397';
console.log(char);  // Output: ⎗

Java:

char c = '\u2397';
System.out.println(c);  // Output: ⎗

JSON:

{"text": "\u2397"}  // Value: ⎗

Python:

char = '\u2397'
print(char)  # Output: ⎗

Perl:

my $char = "\x{2397}";
print $char;  # Output: ⎗

PHP:

$char = "\x{2397}";
echo $char;  // Output: ⎗

Ruby:

char = "\u{2397}"
puts char  # Output: ⎗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002397";  /* Display: ⎗ */
}

HTML Decimal:

<p>HTML decimal: &#9111;</p>  <!-- Display: ⎗ -->

HTML Hexadecimal:

<p>HTML hex: &#x2397;</p>  <!-- Display: ⎗ -->

URL Encoding:

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

Encodings

MD5:

421cf35aa83c14443912a7846f448355

SHA1:

c546ace63ca0a108ce6159234df3e2787d8ef3e3

Base64:

4o6X