Unicode Finder

"敜" U+655C(CJK UNIFIED IDEOGRAPH-655C)

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

Programming

C
\u655C
JavaScript
\u655C
Java
\u655C
Json
\u655C
Python
\u655C
Perl
\x{655C}
PHP
\x{655C}
Ruby
\u{655C}
Rust
\u{655C}
Go
\u655C

Web

CSS
\00655C
HtmlDecimal
敜
HtmlHexadecimal
敜
Url
%E6%95%9C

Code

MD5
684ae6394687649a4edf35f21c4b6ffb
Sha1
7ad2659d085cf355a2dabf800a5d8c593c2b12ad
Base64
5pWc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u655C';
console.log(char);  // Output: 敜

Java:

char c = '\u655C';
System.out.println(c);  // Output: 敜

JSON:

{"text": "\u655C"}  // Value: 敜

Python:

char = '\u655C'
print(char)  # Output: 敜

Perl:

my $char = "\x{655C}";
print $char;  # Output: 敜

PHP:

$char = "\x{655C}";
echo $char;  // Output: 敜

Ruby:

char = "\u{655C}"
puts char  # Output: 敜

Rust:

let c = '\u{655C}';
println!("{}", c);  // Output: 敜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00655C";  /* Display: 敜 */
}

HTML Decimal:

<p>HTML decimal: &#25948;</p>  <!-- Display: 敜 -->

HTML Hexadecimal:

<p>HTML hex: &#x655C;</p>  <!-- Display: 敜 -->

URL Encoding:

// 敜 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%9C

Encodings

MD5:

684ae6394687649a4edf35f21c4b6ffb

SHA1:

7ad2659d085cf355a2dabf800a5d8c593c2b12ad

Base64:

5pWc