Unicode Finder

"悘" U+6098(CJK UNIFIED IDEOGRAPH-6098)

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

Programming

C
\u6098
JavaScript
\u6098
Java
\u6098
Json
\u6098
Python
\u6098
Perl
\x{6098}
PHP
\x{6098}
Ruby
\u{6098}
Rust
\u{6098}
Go
\u6098

Web

CSS
\006098
HtmlDecimal
悘
HtmlHexadecimal
悘
Url
%E6%82%98

Code

MD5
8ddd67735f3d83ca019de3b5bbd9e396
Sha1
8956c4b56cb070af76e1389360c6aaedaca35a6a
Base64
5oKY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6098';
console.log(char);  // Output: 悘

Java:

char c = '\u6098';
System.out.println(c);  // Output: 悘

JSON:

{"text": "\u6098"}  // Value: 悘

Python:

char = '\u6098'
print(char)  # Output: 悘

Perl:

my $char = "\x{6098}";
print $char;  # Output: 悘

PHP:

$char = "\x{6098}";
echo $char;  // Output: 悘

Ruby:

char = "\u{6098}"
puts char  # Output: 悘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006098";  /* Display: 悘 */
}

HTML Decimal:

<p>HTML decimal: &#24728;</p>  <!-- Display: 悘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6098;</p>  <!-- Display: 悘 -->

URL Encoding:

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

Encodings

MD5:

8ddd67735f3d83ca019de3b5bbd9e396

SHA1:

8956c4b56cb070af76e1389360c6aaedaca35a6a

Base64:

5oKY