Unicode Finder

"惉" U+60C9(CJK UNIFIED IDEOGRAPH-60C9)

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

Programming

C
\u60C9
JavaScript
\u60C9
Java
\u60C9
Json
\u60C9
Python
\u60C9
Perl
\x{60C9}
PHP
\x{60C9}
Ruby
\u{60C9}
Rust
\u{60C9}
Go
\u60C9

Web

CSS
\0060C9
HtmlDecimal
惉
HtmlHexadecimal
惉
Url
%E6%83%89

Code

MD5
895db42b9580fd72a837995753cdff19
Sha1
90a948c184c93ad62876b81df1c7f9360c6fd846
Base64
5oOJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u60C9';
console.log(char);  // Output: 惉

Java:

char c = '\u60C9';
System.out.println(c);  // Output: 惉

JSON:

{"text": "\u60C9"}  // Value: 惉

Python:

char = '\u60C9'
print(char)  # Output: 惉

Perl:

my $char = "\x{60C9}";
print $char;  # Output: 惉

PHP:

$char = "\x{60C9}";
echo $char;  // Output: 惉

Ruby:

char = "\u{60C9}"
puts char  # Output: 惉

Rust:

let c = '\u{60C9}';
println!("{}", c);  // Output: 惉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0060C9";  /* Display: 惉 */
}

HTML Decimal:

<p>HTML decimal: &#24777;</p>  <!-- Display: 惉 -->

HTML Hexadecimal:

<p>HTML hex: &#x60C9;</p>  <!-- Display: 惉 -->

URL Encoding:

// 惉 URL encoding
https://unicodefinder.com/search.php?query=%E6%83%89

Encodings

MD5:

895db42b9580fd72a837995753cdff19

SHA1:

90a948c184c93ad62876b81df1c7f9360c6fd846

Base64:

5oOJ