Unicode Finder

"℄" U+2104(CENTRE LINE SYMBOL)

U+2104
Nama Blok
Letterlike Symbols
Nama
CENTRE LINE SYMBOL

Programming

C
\u2104
JavaScript
\u2104
Java
\u2104
Json
\u2104
Python
\u2104
Perl
\x{2104}
PHP
\x{2104}
Ruby
\u{2104}
Rust
\u{2104}
Go
\u2104

Web

CSS
\002104
HtmlDecimal
℄
HtmlHexadecimal
℄
Url
%E2%84%84

Code

MD5
adbeba28007bb7cacda1f03e03fae3ba
Sha1
4032ef9f243469bd873650d41615c73ac6f07302
Base64
4oSE

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2104';
console.log(char);  // Output: ℄

Java:

char c = '\u2104';
System.out.println(c);  // Output: ℄

JSON:

{"text": "\u2104"}  // Value: ℄

Python:

char = '\u2104'
print(char)  # Output: ℄

Perl:

my $char = "\x{2104}";
print $char;  # Output: ℄

PHP:

$char = "\x{2104}";
echo $char;  // Output: ℄

Ruby:

char = "\u{2104}"
puts char  # Output: ℄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002104";  /* Display: ℄ */
}

HTML Decimal:

<p>HTML decimal: &#8452;</p>  <!-- Display: ℄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2104;</p>  <!-- Display: ℄ -->

URL Encoding:

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

Encodings

MD5:

adbeba28007bb7cacda1f03e03fae3ba

SHA1:

4032ef9f243469bd873650d41615c73ac6f07302

Base64:

4oSE