Unicode Finder

"捝" U+635D(CJK UNIFIED IDEOGRAPH-635D)

U+635D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-635D

Programming

C
\u635D
JavaScript
\u635D
Java
\u635D
Json
\u635D
Python
\u635D
Perl
\x{635D}
PHP
\x{635D}
Ruby
\u{635D}
Rust
\u{635D}
Go
\u635D

Web

CSS
\00635D
HtmlDecimal
捝
HtmlHexadecimal
捝
Url
%E6%8D%9D

Code

MD5
da4fe1805b1f1c3c457a3a57fff1412e
Sha1
7b5218fabf5b6e6e34fa77b6edb19822676691b2
Base64
5o2d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u635D';
console.log(char);  // Output: 捝

Java:

char c = '\u635D';
System.out.println(c);  // Output: 捝

JSON:

{"text": "\u635D"}  // Value: 捝

Python:

char = '\u635D'
print(char)  # Output: 捝

Perl:

my $char = "\x{635D}";
print $char;  # Output: 捝

PHP:

$char = "\x{635D}";
echo $char;  // Output: 捝

Ruby:

char = "\u{635D}"
puts char  # Output: 捝

Rust:

let c = '\u{635D}';
println!("{}", c);  // Output: 捝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00635D";  /* Display: 捝 */
}

HTML Decimal:

<p>HTML decimal: &#25437;</p>  <!-- Display: 捝 -->

HTML Hexadecimal:

<p>HTML hex: &#x635D;</p>  <!-- Display: 捝 -->

URL Encoding:

// 捝 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%9D

Encodings

MD5:

da4fe1805b1f1c3c457a3a57fff1412e

SHA1:

7b5218fabf5b6e6e34fa77b6edb19822676691b2

Base64:

5o2d