Unicode Finder

"谽" U+8C3D(CJK UNIFIED IDEOGRAPH-8C3D)

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

Programming

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

Web

CSS
\008C3D
HtmlDecimal
谽
HtmlHexadecimal
谽
Url
%E8%B0%BD

Code

MD5
88d5c93bdbefa35c56638d8806ca0f62
Sha1
50731f1b712b7d5d4e2f68fe60461672236b52f0
Base64
6LC9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C3D';
console.log(char);  // Output: 谽

Java:

char c = '\u8C3D';
System.out.println(c);  // Output: 谽

JSON:

{"text": "\u8C3D"}  // Value: 谽

Python:

char = '\u8C3D'
print(char)  # Output: 谽

Perl:

my $char = "\x{8C3D}";
print $char;  # Output: 谽

PHP:

$char = "\x{8C3D}";
echo $char;  // Output: 谽

Ruby:

char = "\u{8C3D}"
puts char  # Output: 谽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35901;</p>  <!-- Display: 谽 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C3D;</p>  <!-- Display: 谽 -->

URL Encoding:

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

Encodings

MD5:

88d5c93bdbefa35c56638d8806ca0f62

SHA1:

50731f1b712b7d5d4e2f68fe60461672236b52f0

Base64:

6LC9