Unicode Finder

"ㄋ" U+310B(BOPOMOFO LETTER N)

U+310B
Blockname
Bopomofo
Name
BOPOMOFO LETTER N

Programming

C
\u310B
JavaScript
\u310B
Java
\u310B
Json
\u310B
Python
\u310B
Perl
\x{310B}
PHP
\x{310B}
Ruby
\u{310B}
Rust
\u{310B}
Go
\u310B

Web

CSS
\00310B
HtmlDecimal
ㄋ
HtmlHexadecimal
ㄋ
Url
%E3%84%8B

Code

MD5
a162e46e26adbfb3cbcb939b3edffe22
Sha1
c1736813c4567741ed15d9e23758784849fff012
Base64
44SL

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u310B';
console.log(char);  // Output: ㄋ

Java:

char c = '\u310B';
System.out.println(c);  // Output: ㄋ

JSON:

{"text": "\u310B"}  // Value: ㄋ

Python:

char = '\u310B'
print(char)  # Output: ㄋ

Perl:

my $char = "\x{310B}";
print $char;  # Output: ㄋ

PHP:

$char = "\x{310B}";
echo $char;  // Output: ㄋ

Ruby:

char = "\u{310B}"
puts char  # Output: ㄋ

Rust:

let c = '\u{310B}';
println!("{}", c);  // Output: ㄋ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00310B";  /* Display: ㄋ */
}

HTML Decimal:

<p>HTML decimal: &#12555;</p>  <!-- Display: ㄋ -->

HTML Hexadecimal:

<p>HTML hex: &#x310B;</p>  <!-- Display: ㄋ -->

URL Encoding:

// ㄋ URL encoding
https://unicodefinder.com/search.php?query=%E3%84%8B

Encodings

MD5:

a162e46e26adbfb3cbcb939b3edffe22

SHA1:

c1736813c4567741ed15d9e23758784849fff012

Base64:

44SL