Unicode Finder

"谀" U+8C00(CJK UNIFIED IDEOGRAPH-8C00)

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

Programming

C
\u8C00
JavaScript
\u8C00
Java
\u8C00
Json
\u8C00
Python
\u8C00
Perl
\x{8C00}
PHP
\x{8C00}
Ruby
\u{8C00}
Rust
\u{8C00}
Go
\u8C00

Web

CSS
\008C00
HtmlDecimal
谀
HtmlHexadecimal
谀
Url
%E8%B0%80

Code

MD5
9121e5f44f07357e59a435069e6707e9
Sha1
2334261535aeb89be96f585d036ecc93bf5d144b
Base64
6LCA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C00';
console.log(char);  // Output: 谀

Java:

char c = '\u8C00';
System.out.println(c);  // Output: 谀

JSON:

{"text": "\u8C00"}  // Value: 谀

Python:

char = '\u8C00'
print(char)  # Output: 谀

Perl:

my $char = "\x{8C00}";
print $char;  # Output: 谀

PHP:

$char = "\x{8C00}";
echo $char;  // Output: 谀

Ruby:

char = "\u{8C00}"
puts char  # Output: 谀

Rust:

let c = '\u{8C00}';
println!("{}", c);  // Output: 谀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008C00";  /* Display: 谀 */
}

HTML Decimal:

<p>HTML decimal: &#35840;</p>  <!-- Display: 谀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C00;</p>  <!-- Display: 谀 -->

URL Encoding:

// 谀 URL encoding
https://unicodefinder.com/search.php?query=%E8%B0%80

Encodings

MD5:

9121e5f44f07357e59a435069e6707e9

SHA1:

2334261535aeb89be96f585d036ecc93bf5d144b

Base64:

6LCA