Unicode Finder

"注" U+6CE8(CJK UNIFIED IDEOGRAPH-6CE8)

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

Programming

C
\u6CE8
JavaScript
\u6CE8
Java
\u6CE8
Json
\u6CE8
Python
\u6CE8
Perl
\x{6CE8}
PHP
\x{6CE8}
Ruby
\u{6CE8}
Rust
\u{6CE8}
Go
\u6CE8

Web

CSS
\006CE8
HtmlDecimal
注
HtmlHexadecimal
注
Url
%E6%B3%A8

Code

MD5
f6349c441652f0e053dcde768d5c3db8
Sha1
e566be729dc01064f763587fccc5fccc4e710ed6
Base64
5rOo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6CE8';
console.log(char);  // Output: 注

Java:

char c = '\u6CE8';
System.out.println(c);  // Output: 注

JSON:

{"text": "\u6CE8"}  // Value: 注

Python:

char = '\u6CE8'
print(char)  # Output: 注

Perl:

my $char = "\x{6CE8}";
print $char;  # Output: 注

PHP:

$char = "\x{6CE8}";
echo $char;  // Output: 注

Ruby:

char = "\u{6CE8}"
puts char  # Output: 注

Rust:

let c = '\u{6CE8}';
println!("{}", c);  // Output: 注

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006CE8";  /* Display: 注 */
}

HTML Decimal:

<p>HTML decimal: &#27880;</p>  <!-- Display: 注 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CE8;</p>  <!-- Display: 注 -->

URL Encoding:

// 注 URL encoding
https://unicodefinder.com/search.php?query=%E6%B3%A8

Encodings

MD5:

f6349c441652f0e053dcde768d5c3db8

SHA1:

e566be729dc01064f763587fccc5fccc4e710ed6

Base64:

5rOo