Unicode Finder

"惏" U+60CF(CJK UNIFIED IDEOGRAPH-60CF)

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

Programming

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

Web

CSS
\0060CF
HtmlDecimal
惏
HtmlHexadecimal
惏
Url
%E6%83%8F

Code

MD5
9b5b25888abf21d0a710980d1cbbb4b7
Sha1
f83b2c1532c2d85d77598df9185405415e167686
Base64
5oOP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u60CF';
console.log(char);  // Output: 惏

Java:

char c = '\u60CF';
System.out.println(c);  // Output: 惏

JSON:

{"text": "\u60CF"}  // Value: 惏

Python:

char = '\u60CF'
print(char)  # Output: 惏

Perl:

my $char = "\x{60CF}";
print $char;  # Output: 惏

PHP:

$char = "\x{60CF}";
echo $char;  // Output: 惏

Ruby:

char = "\u{60CF}"
puts char  # Output: 惏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24783;</p>  <!-- Display: 惏 -->

HTML Hexadecimal:

<p>HTML hex: &#x60CF;</p>  <!-- Display: 惏 -->

URL Encoding:

// 惏 URL encoding
https://unicodefinder.com/search.php?query=%E6%83%8F

Encodings

MD5:

9b5b25888abf21d0a710980d1cbbb4b7

SHA1:

f83b2c1532c2d85d77598df9185405415e167686

Base64:

5oOP