Unicode Finder

"馃" U+9983(CJK UNIFIED IDEOGRAPH-9983)

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

Programming

C
\u9983
JavaScript
\u9983
Java
\u9983
Json
\u9983
Python
\u9983
Perl
\x{9983}
PHP
\x{9983}
Ruby
\u{9983}
Rust
\u{9983}
Go
\u9983

Web

CSS
\009983
HtmlDecimal
馃
HtmlHexadecimal
馃
Url
%E9%A6%83

Code

MD5
6881643648e4f507c5a504dd136232f9
Sha1
8cc0b42cf076ec6ffe59bb991b195a23957e35d5
Base64
6aaD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9983';
console.log(char);  // Output: 馃

Java:

char c = '\u9983';
System.out.println(c);  // Output: 馃

JSON:

{"text": "\u9983"}  // Value: 馃

Python:

char = '\u9983'
print(char)  # Output: 馃

Perl:

my $char = "\x{9983}";
print $char;  # Output: 馃

PHP:

$char = "\x{9983}";
echo $char;  // Output: 馃

Ruby:

char = "\u{9983}"
puts char  # Output: 馃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009983";  /* Display: 馃 */
}

HTML Decimal:

<p>HTML decimal: &#39299;</p>  <!-- Display: 馃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9983;</p>  <!-- Display: 馃 -->

URL Encoding:

// 馃 URL encoding
https://unicodefinder.com/search.php?query=%E9%A6%83

Encodings

MD5:

6881643648e4f507c5a504dd136232f9

SHA1:

8cc0b42cf076ec6ffe59bb991b195a23957e35d5

Base64:

6aaD