Unicode Finder

"悗" U+6097(CJK UNIFIED IDEOGRAPH-6097)

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

Programming

C
\u6097
JavaScript
\u6097
Java
\u6097
Json
\u6097
Python
\u6097
Perl
\x{6097}
PHP
\x{6097}
Ruby
\u{6097}
Rust
\u{6097}
Go
\u6097

Web

CSS
\006097
HtmlDecimal
悗
HtmlHexadecimal
悗
Url
%E6%82%97

Code

MD5
26064a38c24a76ae73388d722dae060e
Sha1
eb6b91172b1ec7d537f36ebe6148aa31f564f37a
Base64
5oKX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6097';
console.log(char);  // Output: 悗

Java:

char c = '\u6097';
System.out.println(c);  // Output: 悗

JSON:

{"text": "\u6097"}  // Value: 悗

Python:

char = '\u6097'
print(char)  # Output: 悗

Perl:

my $char = "\x{6097}";
print $char;  # Output: 悗

PHP:

$char = "\x{6097}";
echo $char;  // Output: 悗

Ruby:

char = "\u{6097}"
puts char  # Output: 悗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006097";  /* Display: 悗 */
}

HTML Decimal:

<p>HTML decimal: &#24727;</p>  <!-- Display: 悗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6097;</p>  <!-- Display: 悗 -->

URL Encoding:

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

Encodings

MD5:

26064a38c24a76ae73388d722dae060e

SHA1:

eb6b91172b1ec7d537f36ebe6148aa31f564f37a

Base64:

5oKX