Unicode Finder

"惟" U+60DF(CJK UNIFIED IDEOGRAPH-60DF)

U+60DF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-60DF

Programming

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

Web

CSS
\0060DF
HtmlDecimal
惟
HtmlHexadecimal
惟
Url
%E6%83%9F

Code

MD5
21484f070073d29d64914ab993970d06
Sha1
d0f1c63d3f7f91f3298699afbb61bb5ef230f7b6
Base64
5oOf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u60DF';
console.log(char);  // Output: 惟

Java:

char c = '\u60DF';
System.out.println(c);  // Output: 惟

JSON:

{"text": "\u60DF"}  // Value: 惟

Python:

char = '\u60DF'
print(char)  # Output: 惟

Perl:

my $char = "\x{60DF}";
print $char;  # Output: 惟

PHP:

$char = "\x{60DF}";
echo $char;  // Output: 惟

Ruby:

char = "\u{60DF}"
puts char  # Output: 惟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24799;</p>  <!-- Display: 惟 -->

HTML Hexadecimal:

<p>HTML hex: &#x60DF;</p>  <!-- Display: 惟 -->

URL Encoding:

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

Encodings

MD5:

21484f070073d29d64914ab993970d06

SHA1:

d0f1c63d3f7f91f3298699afbb61bb5ef230f7b6

Base64:

5oOf