Unicode Finder

"蚘" U+8698(CJK UNIFIED IDEOGRAPH-8698)

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

Programming

C
\u8698
JavaScript
\u8698
Java
\u8698
Json
\u8698
Python
\u8698
Perl
\x{8698}
PHP
\x{8698}
Ruby
\u{8698}
Rust
\u{8698}
Go
\u8698

Web

CSS
\008698
HtmlDecimal
蚘
HtmlHexadecimal
蚘
Url
%E8%9A%98

Code

MD5
f4fc639b6c1eb780f4c020ea243a31c4
Sha1
edba4ec5569a7bb4528ebcb52e38de25b752d263
Base64
6JqY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8698';
console.log(char);  // Output: 蚘

Java:

char c = '\u8698';
System.out.println(c);  // Output: 蚘

JSON:

{"text": "\u8698"}  // Value: 蚘

Python:

char = '\u8698'
print(char)  # Output: 蚘

Perl:

my $char = "\x{8698}";
print $char;  # Output: 蚘

PHP:

$char = "\x{8698}";
echo $char;  // Output: 蚘

Ruby:

char = "\u{8698}"
puts char  # Output: 蚘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008698";  /* Display: 蚘 */
}

HTML Decimal:

<p>HTML decimal: &#34456;</p>  <!-- Display: 蚘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8698;</p>  <!-- Display: 蚘 -->

URL Encoding:

// 蚘 URL encoding
https://unicodefinder.com/search.php?query=%E8%9A%98

Encodings

MD5:

f4fc639b6c1eb780f4c020ea243a31c4

SHA1:

edba4ec5569a7bb4528ebcb52e38de25b752d263

Base64:

6JqY