Unicode Finder

"怇" U+6007(CJK UNIFIED IDEOGRAPH-6007)

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

Programming

C
\u6007
JavaScript
\u6007
Java
\u6007
Json
\u6007
Python
\u6007
Perl
\x{6007}
PHP
\x{6007}
Ruby
\u{6007}
Rust
\u{6007}
Go
\u6007

Web

CSS
\006007
HtmlDecimal
怇
HtmlHexadecimal
怇
Url
%E6%80%87

Code

MD5
a8f0b8e72d507df462a77f1a4cbe46d5
Sha1
c4d7ceb50ecf79f4ce118125fce8a36fdcc1d369
Base64
5oCH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6007';
console.log(char);  // Output: 怇

Java:

char c = '\u6007';
System.out.println(c);  // Output: 怇

JSON:

{"text": "\u6007"}  // Value: 怇

Python:

char = '\u6007'
print(char)  # Output: 怇

Perl:

my $char = "\x{6007}";
print $char;  # Output: 怇

PHP:

$char = "\x{6007}";
echo $char;  // Output: 怇

Ruby:

char = "\u{6007}"
puts char  # Output: 怇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006007";  /* Display: 怇 */
}

HTML Decimal:

<p>HTML decimal: &#24583;</p>  <!-- Display: 怇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6007;</p>  <!-- Display: 怇 -->

URL Encoding:

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

Encodings

MD5:

a8f0b8e72d507df462a77f1a4cbe46d5

SHA1:

c4d7ceb50ecf79f4ce118125fce8a36fdcc1d369

Base64:

5oCH