Unicode Finder

"菃" U+83C3(CJK UNIFIED IDEOGRAPH-83C3)

U+83C3
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-83C3

Programming

C
\u83C3
JavaScript
\u83C3
Java
\u83C3
Json
\u83C3
Python
\u83C3
Perl
\x{83C3}
PHP
\x{83C3}
Ruby
\u{83C3}
Rust
\u{83C3}
Go
\u83C3

Web

CSS
\0083C3
HtmlDecimal
菃
HtmlHexadecimal
菃
Url
%E8%8F%83

Code

MD5
5450ec1882a16f348b716fa4944700e7
Sha1
e346309fdee3be1f38a4a15fb80dc3caa32d8573
Base64
6I+D

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C3';
console.log(char);  // Output: 菃

Java:

char c = '\u83C3';
System.out.println(c);  // Output: 菃

JSON:

{"text": "\u83C3"}  // Value: 菃

Python:

char = '\u83C3'
print(char)  # Output: 菃

Perl:

my $char = "\x{83C3}";
print $char;  # Output: 菃

PHP:

$char = "\x{83C3}";
echo $char;  // Output: 菃

Ruby:

char = "\u{83C3}"
puts char  # Output: 菃

Rust:

let c = '\u{83C3}';
println!("{}", c);  // Output: 菃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0083C3";  /* Display: 菃 */
}

HTML Decimal:

<p>HTML decimal: &#33731;</p>  <!-- Display: 菃 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C3;</p>  <!-- Display: 菃 -->

URL Encoding:

// 菃 URL encoding
https://unicodefinder.com/search.php?query=%E8%8F%83

Encodings

MD5:

5450ec1882a16f348b716fa4944700e7

SHA1:

e346309fdee3be1f38a4a15fb80dc3caa32d8573

Base64:

6I+D