Unicode Finder

"፠" U+1360(ETHIOPIC SECTION MARK)

U+1360
블록 이름
Ethiopic
이름
ETHIOPIC SECTION MARK

Programming

C
\u1360
JavaScript
\u1360
Java
\u1360
Json
\u1360
Python
\u1360
Perl
\x{1360}
PHP
\x{1360}
Ruby
\u{1360}
Rust
\u{1360}
Go
\u1360

Web

CSS
\001360
HtmlDecimal
፠
HtmlHexadecimal
፠
Url
%E1%8D%A0

Code

MD5
68fc47c2478f9c7ffd0efb203b7bcbed
Sha1
99189bd20a3b6f9a3c082a6ecb4e7a52c604293f
Base64
4Y2g

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u1360';
console.log(char);  // Output: ፠

Java:

char c = '\u1360';
System.out.println(c);  // Output: ፠

JSON:

{"text": "\u1360"}  // Value: ፠

Python:

char = '\u1360'
print(char)  # Output: ፠

Perl:

my $char = "\x{1360}";
print $char;  # Output: ፠

PHP:

$char = "\x{1360}";
echo $char;  // Output: ፠

Ruby:

char = "\u{1360}"
puts char  # Output: ፠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001360";  /* Display: ፠ */
}

HTML Decimal:

<p>HTML decimal: &#4960;</p>  <!-- Display: ፠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1360;</p>  <!-- Display: ፠ -->

URL Encoding:

// ፠ URL encoding
https://unicodefinder.com/search.php?query=%E1%8D%A0

Encodings

MD5:

68fc47c2478f9c7ffd0efb203b7bcbed

SHA1:

99189bd20a3b6f9a3c082a6ecb4e7a52c604293f

Base64:

4Y2g