Unicode Finder

"␟" U+241F(SYMBOL FOR UNIT SEPARATOR)

U+241F
Pangalan ng Block
Control Pictures
Pangalan
SYMBOL FOR UNIT SEPARATOR

Programming

C
\u241F
JavaScript
\u241F
Java
\u241F
Json
\u241F
Python
\u241F
Perl
\x{241F}
PHP
\x{241F}
Ruby
\u{241F}
Rust
\u{241F}
Go
\u241F

Web

CSS
\00241F
HtmlDecimal
␟
HtmlHexadecimal
␟
Url
%E2%90%9F

Code

MD5
5a05448f86fed7f5b6031c88418d91b0
Sha1
c9b6ffbad16f6fd807c19e32da87b6c2b4fabb61
Base64
4pCf

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u241F';
console.log(char);  // Output: ␟

Java:

char c = '\u241F';
System.out.println(c);  // Output: ␟

JSON:

{"text": "\u241F"}  // Value: ␟

Python:

char = '\u241F'
print(char)  # Output: ␟

Perl:

my $char = "\x{241F}";
print $char;  # Output: ␟

PHP:

$char = "\x{241F}";
echo $char;  // Output: ␟

Ruby:

char = "\u{241F}"
puts char  # Output: ␟

Rust:

let c = '\u{241F}';
println!("{}", c);  // Output: ␟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00241F";  /* Display: ␟ */
}

HTML Decimal:

<p>HTML decimal: &#9247;</p>  <!-- Display: ␟ -->

HTML Hexadecimal:

<p>HTML hex: &#x241F;</p>  <!-- Display: ␟ -->

URL Encoding:

// ␟ URL encoding
https://unicodefinder.com/search.php?query=%E2%90%9F

Encodings

MD5:

5a05448f86fed7f5b6031c88418d91b0

SHA1:

c9b6ffbad16f6fd807c19e32da87b6c2b4fabb61

Base64:

4pCf