Unicode Finder

"谧" U+8C27(CJK UNIFIED IDEOGRAPH-8C27)

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

Programming

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

Web

CSS
\008C27
HtmlDecimal
谧
HtmlHexadecimal
谧
Url
%E8%B0%A7

Code

MD5
8d7b291a29b6ae697221c938e6ea7f5a
Sha1
50c8d4be396010e61d6e92656bffe167f59415f3
Base64
6LCn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C27';
console.log(char);  // Output: 谧

Java:

char c = '\u8C27';
System.out.println(c);  // Output: 谧

JSON:

{"text": "\u8C27"}  // Value: 谧

Python:

char = '\u8C27'
print(char)  # Output: 谧

Perl:

my $char = "\x{8C27}";
print $char;  # Output: 谧

PHP:

$char = "\x{8C27}";
echo $char;  // Output: 谧

Ruby:

char = "\u{8C27}"
puts char  # Output: 谧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35879;</p>  <!-- Display: 谧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C27;</p>  <!-- Display: 谧 -->

URL Encoding:

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

Encodings

MD5:

8d7b291a29b6ae697221c938e6ea7f5a

SHA1:

50c8d4be396010e61d6e92656bffe167f59415f3

Base64:

6LCn