Unicode Finder

"ㄑ" U+3111(BOPOMOFO LETTER Q)

U+3111
Tên Khối
Bopomofo
Tên
BOPOMOFO LETTER Q

Programming

C
\u3111
JavaScript
\u3111
Java
\u3111
Json
\u3111
Python
\u3111
Perl
\x{3111}
PHP
\x{3111}
Ruby
\u{3111}
Rust
\u{3111}
Go
\u3111

Web

CSS
\003111
HtmlDecimal
ㄑ
HtmlHexadecimal
ㄑ
Url
%E3%84%91

Code

MD5
63933d07931a4ff8a6b650daf5fa0a37
Sha1
cd50f7cc2c5e895c82419aaebd6e1863f61b19b8
Base64
44SR

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u3111';
console.log(char);  // Output: ㄑ

Java:

char c = '\u3111';
System.out.println(c);  // Output: ㄑ

JSON:

{"text": "\u3111"}  // Value: ㄑ

Python:

char = '\u3111'
print(char)  # Output: ㄑ

Perl:

my $char = "\x{3111}";
print $char;  # Output: ㄑ

PHP:

$char = "\x{3111}";
echo $char;  // Output: ㄑ

Ruby:

char = "\u{3111}"
puts char  # Output: ㄑ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003111";  /* Display: ㄑ */
}

HTML Decimal:

<p>HTML decimal: &#12561;</p>  <!-- Display: ㄑ -->

HTML Hexadecimal:

<p>HTML hex: &#x3111;</p>  <!-- Display: ㄑ -->

URL Encoding:

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

Encodings

MD5:

63933d07931a4ff8a6b650daf5fa0a37

SHA1:

cd50f7cc2c5e895c82419aaebd6e1863f61b19b8

Base64:

44SR