Unicode Finder

"韟" U+97DF(CJK UNIFIED IDEOGRAPH-97DF)

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

Programming

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

Web

CSS
\0097DF
HtmlDecimal
韟
HtmlHexadecimal
韟
Url
%E9%9F%9F

Code

MD5
9ec3135e2bfa9034b883a5f24ece52c1
Sha1
61edaf905f4f500c4a7d23292f8478fe77c55ab3
Base64
6Z+f

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u97DF';
console.log(char);  // Output: 韟

Java:

char c = '\u97DF';
System.out.println(c);  // Output: 韟

JSON:

{"text": "\u97DF"}  // Value: 韟

Python:

char = '\u97DF'
print(char)  # Output: 韟

Perl:

my $char = "\x{97DF}";
print $char;  # Output: 韟

PHP:

$char = "\x{97DF}";
echo $char;  // Output: 韟

Ruby:

char = "\u{97DF}"
puts char  # Output: 韟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38879;</p>  <!-- Display: 韟 -->

HTML Hexadecimal:

<p>HTML hex: &#x97DF;</p>  <!-- Display: 韟 -->

URL Encoding:

// 韟 URL encoding
https://unicodefinder.com/search.php?query=%E9%9F%9F

Encodings

MD5:

9ec3135e2bfa9034b883a5f24ece52c1

SHA1:

61edaf905f4f500c4a7d23292f8478fe77c55ab3

Base64:

6Z+f