Unicode Finder

"怂" U+6002(CJK UNIFIED IDEOGRAPH-6002)

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

Programming

C
\u6002
JavaScript
\u6002
Java
\u6002
Json
\u6002
Python
\u6002
Perl
\x{6002}
PHP
\x{6002}
Ruby
\u{6002}
Rust
\u{6002}
Go
\u6002

Web

CSS
\006002
HtmlDecimal
怂
HtmlHexadecimal
怂
Url
%E6%80%82

Code

MD5
c7baccef6916186c492f517a089d1430
Sha1
494d63e7505c39b970da955552334815287666ca
Base64
5oCC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6002';
console.log(char);  // Output: 怂

Java:

char c = '\u6002';
System.out.println(c);  // Output: 怂

JSON:

{"text": "\u6002"}  // Value: 怂

Python:

char = '\u6002'
print(char)  # Output: 怂

Perl:

my $char = "\x{6002}";
print $char;  # Output: 怂

PHP:

$char = "\x{6002}";
echo $char;  // Output: 怂

Ruby:

char = "\u{6002}"
puts char  # Output: 怂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006002";  /* Display: 怂 */
}

HTML Decimal:

<p>HTML decimal: &#24578;</p>  <!-- Display: 怂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6002;</p>  <!-- Display: 怂 -->

URL Encoding:

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

Encodings

MD5:

c7baccef6916186c492f517a089d1430

SHA1:

494d63e7505c39b970da955552334815287666ca

Base64:

5oCC