Unicode Finder

"፷" U+1377(ETHIOPIC NUMBER SIXTY)

U+1377
블록 이름
Ethiopic
이름
ETHIOPIC NUMBER SIXTY

Programming

C
\u1377
JavaScript
\u1377
Java
\u1377
Json
\u1377
Python
\u1377
Perl
\x{1377}
PHP
\x{1377}
Ruby
\u{1377}
Rust
\u{1377}
Go
\u1377

Web

CSS
\001377
HtmlDecimal
፷
HtmlHexadecimal
፷
Url
%E1%8D%B7

Code

MD5
c231c782139359877078916008ef44b5
Sha1
741f8fe8244575e283b71a0f4e46c8377c0ddd7d
Base64
4Y23

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u1377';
console.log(char);  // Output: ፷

Java:

char c = '\u1377';
System.out.println(c);  // Output: ፷

JSON:

{"text": "\u1377"}  // Value: ፷

Python:

char = '\u1377'
print(char)  # Output: ፷

Perl:

my $char = "\x{1377}";
print $char;  # Output: ፷

PHP:

$char = "\x{1377}";
echo $char;  // Output: ፷

Ruby:

char = "\u{1377}"
puts char  # Output: ፷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001377";  /* Display: ፷ */
}

HTML Decimal:

<p>HTML decimal: &#4983;</p>  <!-- Display: ፷ -->

HTML Hexadecimal:

<p>HTML hex: &#x1377;</p>  <!-- Display: ፷ -->

URL Encoding:

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

Encodings

MD5:

c231c782139359877078916008ef44b5

SHA1:

741f8fe8244575e283b71a0f4e46c8377c0ddd7d

Base64:

4Y23