Unicode Finder

"⌏" U+230F(TOP LEFT CROP)

U+230F
Nama Blok
Miscellaneous Technical
Nama
TOP LEFT CROP

Programming

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

Web

CSS
\00230F
HtmlDecimal
⌏
HtmlHexadecimal
⌏
Url
%E2%8C%8F

Code

MD5
e5a419d1ff6cb487460fad887d197f93
Sha1
0d0f88026645d8592a393f0fd45ec3d5c118496a
Base64
4oyP

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u230F';
console.log(char);  // Output: ⌏

Java:

char c = '\u230F';
System.out.println(c);  // Output: ⌏

JSON:

{"text": "\u230F"}  // Value: ⌏

Python:

char = '\u230F'
print(char)  # Output: ⌏

Perl:

my $char = "\x{230F}";
print $char;  # Output: ⌏

PHP:

$char = "\x{230F}";
echo $char;  // Output: ⌏

Ruby:

char = "\u{230F}"
puts char  # Output: ⌏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8975;</p>  <!-- Display: ⌏ -->

HTML Hexadecimal:

<p>HTML hex: &#x230F;</p>  <!-- Display: ⌏ -->

URL Encoding:

// ⌏ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%8F

Encodings

MD5:

e5a419d1ff6cb487460fad887d197f93

SHA1:

0d0f88026645d8592a393f0fd45ec3d5c118496a

Base64:

4oyP