Unicode Finder

"ㄣ" U+3123(BOPOMOFO LETTER EN)

U+3123
Nazwa Bloku
Bopomofo
Nazwa
BOPOMOFO LETTER EN

Programming

C
\u3123
JavaScript
\u3123
Java
\u3123
Json
\u3123
Python
\u3123
Perl
\x{3123}
PHP
\x{3123}
Ruby
\u{3123}
Rust
\u{3123}
Go
\u3123

Web

CSS
\003123
HtmlDecimal
ㄣ
HtmlHexadecimal
ㄣ
Url
%E3%84%A3

Code

MD5
29b1463035678a50662aef19cc061887
Sha1
0d42f402d17c7ed61171c1fabd6f86cf854a8451
Base64
44Sj

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u3123';
console.log(char);  // Output: ㄣ

Java:

char c = '\u3123';
System.out.println(c);  // Output: ㄣ

JSON:

{"text": "\u3123"}  // Value: ㄣ

Python:

char = '\u3123'
print(char)  # Output: ㄣ

Perl:

my $char = "\x{3123}";
print $char;  # Output: ㄣ

PHP:

$char = "\x{3123}";
echo $char;  // Output: ㄣ

Ruby:

char = "\u{3123}"
puts char  # Output: ㄣ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003123";  /* Display: ㄣ */
}

HTML Decimal:

<p>HTML decimal: &#12579;</p>  <!-- Display: ㄣ -->

HTML Hexadecimal:

<p>HTML hex: &#x3123;</p>  <!-- Display: ㄣ -->

URL Encoding:

// ㄣ URL encoding
https://unicodefinder.com/search.php?query=%E3%84%A3

Encodings

MD5:

29b1463035678a50662aef19cc061887

SHA1:

0d42f402d17c7ed61171c1fabd6f86cf854a8451

Base64:

44Sj