Unicode Finder

"␈" U+2408(SYMBOL FOR BACKSPACE)

U+2408
區塊名稱
Control Pictures
名稱
SYMBOL FOR BACKSPACE

Programming

C
\u2408
JavaScript
\u2408
Java
\u2408
Json
\u2408
Python
\u2408
Perl
\x{2408}
PHP
\x{2408}
Ruby
\u{2408}
Rust
\u{2408}
Go
\u2408

Web

CSS
\002408
HtmlDecimal
␈
HtmlHexadecimal
␈
Url
%E2%90%88

Code

MD5
6c212c41dfbe9660f990d0f54be1211f
Sha1
c0c0605f2b4c39fa724e8bc304a48133d109d171
Base64
4pCI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2408';
console.log(char);  // Output: ␈

Java:

char c = '\u2408';
System.out.println(c);  // Output: ␈

JSON:

{"text": "\u2408"}  // Value: ␈

Python:

char = '\u2408'
print(char)  # Output: ␈

Perl:

my $char = "\x{2408}";
print $char;  # Output: ␈

PHP:

$char = "\x{2408}";
echo $char;  // Output: ␈

Ruby:

char = "\u{2408}"
puts char  # Output: ␈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002408";  /* Display: ␈ */
}

HTML Decimal:

<p>HTML decimal: &#9224;</p>  <!-- Display: ␈ -->

HTML Hexadecimal:

<p>HTML hex: &#x2408;</p>  <!-- Display: ␈ -->

URL Encoding:

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

Encodings

MD5:

6c212c41dfbe9660f990d0f54be1211f

SHA1:

c0c0605f2b4c39fa724e8bc304a48133d109d171

Base64:

4pCI