Unicode Finder

"℔" U+2114(L B BAR SYMBOL)

U+2114
Nama Blok
Letterlike Symbols
Nama
L B BAR SYMBOL

Programming

C
\u2114
JavaScript
\u2114
Java
\u2114
Json
\u2114
Python
\u2114
Perl
\x{2114}
PHP
\x{2114}
Ruby
\u{2114}
Rust
\u{2114}
Go
\u2114

Web

CSS
\002114
HtmlDecimal
℔
HtmlHexadecimal
℔
Url
%E2%84%94

Code

MD5
8b6c962a4ec6d432f560ea9f74143003
Sha1
5726a934dc5527981b6da2a4d3e95670e0a75980
Base64
4oSU

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2114';
console.log(char);  // Output: ℔

Java:

char c = '\u2114';
System.out.println(c);  // Output: ℔

JSON:

{"text": "\u2114"}  // Value: ℔

Python:

char = '\u2114'
print(char)  # Output: ℔

Perl:

my $char = "\x{2114}";
print $char;  # Output: ℔

PHP:

$char = "\x{2114}";
echo $char;  // Output: ℔

Ruby:

char = "\u{2114}"
puts char  # Output: ℔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002114";  /* Display: ℔ */
}

HTML Decimal:

<p>HTML decimal: &#8468;</p>  <!-- Display: ℔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2114;</p>  <!-- Display: ℔ -->

URL Encoding:

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

Encodings

MD5:

8b6c962a4ec6d432f560ea9f74143003

SHA1:

5726a934dc5527981b6da2a4d3e95670e0a75980

Base64:

4oSU