Unicode Finder

"謜" U+8B1C(CJK UNIFIED IDEOGRAPH-8B1C)

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

Programming

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

Web

CSS
\008B1C
HtmlDecimal
謜
HtmlHexadecimal
謜
Url
%E8%AC%9C

Code

MD5
0dc259f67e232d945a3c5292b84f5b41
Sha1
4add5d6673924743f957887fb9a2bb355bc9f895
Base64
6Kyc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B1C';
console.log(char);  // Output: 謜

Java:

char c = '\u8B1C';
System.out.println(c);  // Output: 謜

JSON:

{"text": "\u8B1C"}  // Value: 謜

Python:

char = '\u8B1C'
print(char)  # Output: 謜

Perl:

my $char = "\x{8B1C}";
print $char;  # Output: 謜

PHP:

$char = "\x{8B1C}";
echo $char;  // Output: 謜

Ruby:

char = "\u{8B1C}"
puts char  # Output: 謜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35612;</p>  <!-- Display: 謜 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B1C;</p>  <!-- Display: 謜 -->

URL Encoding:

// 謜 URL encoding
https://unicodefinder.com/search.php?query=%E8%AC%9C

Encodings

MD5:

0dc259f67e232d945a3c5292b84f5b41

SHA1:

4add5d6673924743f957887fb9a2bb355bc9f895

Base64:

6Kyc