Unicode Finder

"飋" U+98CB(CJK UNIFIED IDEOGRAPH-98CB)

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

Programming

C
\u98CB
JavaScript
\u98CB
Java
\u98CB
Json
\u98CB
Python
\u98CB
Perl
\x{98CB}
PHP
\x{98CB}
Ruby
\u{98CB}
Rust
\u{98CB}
Go
\u98CB

Web

CSS
\0098CB
HtmlDecimal
飋
HtmlHexadecimal
飋
Url
%E9%A3%8B

Code

MD5
4856d78d5f5508c742cb6ccbd4ee08fd
Sha1
45e319fc9232182918a75cf074171c37b974b22b
Base64
6aOL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u98CB';
console.log(char);  // Output: 飋

Java:

char c = '\u98CB';
System.out.println(c);  // Output: 飋

JSON:

{"text": "\u98CB"}  // Value: 飋

Python:

char = '\u98CB'
print(char)  # Output: 飋

Perl:

my $char = "\x{98CB}";
print $char;  # Output: 飋

PHP:

$char = "\x{98CB}";
echo $char;  // Output: 飋

Ruby:

char = "\u{98CB}"
puts char  # Output: 飋

Rust:

let c = '\u{98CB}';
println!("{}", c);  // Output: 飋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0098CB";  /* Display: 飋 */
}

HTML Decimal:

<p>HTML decimal: &#39115;</p>  <!-- Display: 飋 -->

HTML Hexadecimal:

<p>HTML hex: &#x98CB;</p>  <!-- Display: 飋 -->

URL Encoding:

// 飋 URL encoding
https://unicodefinder.com/search.php?query=%E9%A3%8B

Encodings

MD5:

4856d78d5f5508c742cb6ccbd4ee08fd

SHA1:

45e319fc9232182918a75cf074171c37b974b22b

Base64:

6aOL