Unicode Finder

"概" U+6982(CJK UNIFIED IDEOGRAPH-6982)

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

Programming

C
\u6982
JavaScript
\u6982
Java
\u6982
Json
\u6982
Python
\u6982
Perl
\x{6982}
PHP
\x{6982}
Ruby
\u{6982}
Rust
\u{6982}
Go
\u6982

Web

CSS
\006982
HtmlDecimal
概
HtmlHexadecimal
概
Url
%E6%A6%82

Code

MD5
82125c56343cedc726dffbd5d758a9ae
Sha1
0b51e84e9b2b24e34d9b21907a78239f9ac268c7
Base64
5qaC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6982';
console.log(char);  // Output: 概

Java:

char c = '\u6982';
System.out.println(c);  // Output: 概

JSON:

{"text": "\u6982"}  // Value: 概

Python:

char = '\u6982'
print(char)  # Output: 概

Perl:

my $char = "\x{6982}";
print $char;  # Output: 概

PHP:

$char = "\x{6982}";
echo $char;  // Output: 概

Ruby:

char = "\u{6982}"
puts char  # Output: 概

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006982";  /* Display: 概 */
}

HTML Decimal:

<p>HTML decimal: &#27010;</p>  <!-- Display: 概 -->

HTML Hexadecimal:

<p>HTML hex: &#x6982;</p>  <!-- Display: 概 -->

URL Encoding:

// 概 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%82

Encodings

MD5:

82125c56343cedc726dffbd5d758a9ae

SHA1:

0b51e84e9b2b24e34d9b21907a78239f9ac268c7

Base64:

5qaC