Unicode Finder

"詬" U+8A6C(CJK UNIFIED IDEOGRAPH-8A6C)

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

Programming

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

Web

CSS
\008A6C
HtmlDecimal
詬
HtmlHexadecimal
詬
Url
%E8%A9%AC

Code

MD5
856617726755d4e6b03ed00e32b052cb
Sha1
df7b1b1cafc721a30835c8ad6af6c8551b97b348
Base64
6Kms

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8A6C';
console.log(char);  // Output: 詬

Java:

char c = '\u8A6C';
System.out.println(c);  // Output: 詬

JSON:

{"text": "\u8A6C"}  // Value: 詬

Python:

char = '\u8A6C'
print(char)  # Output: 詬

Perl:

my $char = "\x{8A6C}";
print $char;  # Output: 詬

PHP:

$char = "\x{8A6C}";
echo $char;  // Output: 詬

Ruby:

char = "\u{8A6C}"
puts char  # Output: 詬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35436;</p>  <!-- Display: 詬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A6C;</p>  <!-- Display: 詬 -->

URL Encoding:

// 詬 URL encoding
https://unicodefinder.com/search.php?query=%E8%A9%AC

Encodings

MD5:

856617726755d4e6b03ed00e32b052cb

SHA1:

df7b1b1cafc721a30835c8ad6af6c8551b97b348

Base64:

6Kms