Unicode Finder

"ㄦ" U+3126(BOPOMOFO LETTER ER)

U+3126
ブロック名
Bopomofo
名前
BOPOMOFO LETTER ER

Programming

C
\u3126
JavaScript
\u3126
Java
\u3126
Json
\u3126
Python
\u3126
Perl
\x{3126}
PHP
\x{3126}
Ruby
\u{3126}
Rust
\u{3126}
Go
\u3126

Web

CSS
\003126
HtmlDecimal
ㄦ
HtmlHexadecimal
ㄦ
Url
%E3%84%A6

Code

MD5
ee5f3e6f0c764e4b51480e4bf334648d
Sha1
70b41daa545fc1a86ec3923cf4c35fbcdf18926f
Base64
44Sm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u3126';
console.log(char);  // Output: ㄦ

Java:

char c = '\u3126';
System.out.println(c);  // Output: ㄦ

JSON:

{"text": "\u3126"}  // Value: ㄦ

Python:

char = '\u3126'
print(char)  # Output: ㄦ

Perl:

my $char = "\x{3126}";
print $char;  # Output: ㄦ

PHP:

$char = "\x{3126}";
echo $char;  // Output: ㄦ

Ruby:

char = "\u{3126}"
puts char  # Output: ㄦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003126";  /* Display: ㄦ */
}

HTML Decimal:

<p>HTML decimal: &#12582;</p>  <!-- Display: ㄦ -->

HTML Hexadecimal:

<p>HTML hex: &#x3126;</p>  <!-- Display: ㄦ -->

URL Encoding:

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

Encodings

MD5:

ee5f3e6f0c764e4b51480e4bf334648d

SHA1:

70b41daa545fc1a86ec3923cf4c35fbcdf18926f

Base64:

44Sm