Unicode Finder

"披" U+62AB(CJK UNIFIED IDEOGRAPH-62AB)

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

Programming

C
\u62AB
JavaScript
\u62AB
Java
\u62AB
Json
\u62AB
Python
\u62AB
Perl
\x{62AB}
PHP
\x{62AB}
Ruby
\u{62AB}
Rust
\u{62AB}
Go
\u62AB

Web

CSS
\0062AB
HtmlDecimal
披
HtmlHexadecimal
披
Url
%E6%8A%AB

Code

MD5
9bc0265558b58632f10a5ca1e3d15343
Sha1
f30efba8a0f0f569c347d805016f768b682b01d6
Base64
5oqr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62AB';
console.log(char);  // Output: 披

Java:

char c = '\u62AB';
System.out.println(c);  // Output: 披

JSON:

{"text": "\u62AB"}  // Value: 披

Python:

char = '\u62AB'
print(char)  # Output: 披

Perl:

my $char = "\x{62AB}";
print $char;  # Output: 披

PHP:

$char = "\x{62AB}";
echo $char;  // Output: 披

Ruby:

char = "\u{62AB}"
puts char  # Output: 披

Rust:

let c = '\u{62AB}';
println!("{}", c);  // Output: 披

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0062AB";  /* Display: 披 */
}

HTML Decimal:

<p>HTML decimal: &#25259;</p>  <!-- Display: 披 -->

HTML Hexadecimal:

<p>HTML hex: &#x62AB;</p>  <!-- Display: 披 -->

URL Encoding:

// 披 URL encoding
https://unicodefinder.com/search.php?query=%E6%8A%AB

Encodings

MD5:

9bc0265558b58632f10a5ca1e3d15343

SHA1:

f30efba8a0f0f569c347d805016f768b682b01d6

Base64:

5oqr