Unicode Finder

"岂" U+5C82(CJK UNIFIED IDEOGRAPH-5C82)

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

Programming

C
\u5C82
JavaScript
\u5C82
Java
\u5C82
Json
\u5C82
Python
\u5C82
Perl
\x{5C82}
PHP
\x{5C82}
Ruby
\u{5C82}
Rust
\u{5C82}
Go
\u5C82

Web

CSS
\005C82
HtmlDecimal
岂
HtmlHexadecimal
岂
Url
%E5%B2%82

Code

MD5
ff71e5a6424aebf9cceedaa3bc520921
Sha1
147e23453f7fee578519b3a80e22aecd0153ee74
Base64
5bKC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C82';
console.log(char);  // Output: 岂

Java:

char c = '\u5C82';
System.out.println(c);  // Output: 岂

JSON:

{"text": "\u5C82"}  // Value: 岂

Python:

char = '\u5C82'
print(char)  # Output: 岂

Perl:

my $char = "\x{5C82}";
print $char;  # Output: 岂

PHP:

$char = "\x{5C82}";
echo $char;  // Output: 岂

Ruby:

char = "\u{5C82}"
puts char  # Output: 岂

Rust:

let c = '\u{5C82}';
println!("{}", c);  // Output: 岂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C82";  /* Display: 岂 */
}

HTML Decimal:

<p>HTML decimal: &#23682;</p>  <!-- Display: 岂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C82;</p>  <!-- Display: 岂 -->

URL Encoding:

// 岂 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%82

Encodings

MD5:

ff71e5a6424aebf9cceedaa3bc520921

SHA1:

147e23453f7fee578519b3a80e22aecd0153ee74

Base64:

5bKC