Unicode Finder

"捽" U+637D(CJK UNIFIED IDEOGRAPH-637D)

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

Programming

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

Web

CSS
\00637D
HtmlDecimal
捽
HtmlHexadecimal
捽
Url
%E6%8D%BD

Code

MD5
e06008351a14affc9c50269ab69e134b
Sha1
d495b6ef194174d802a1011a0ab5c17961e30f56
Base64
5o29

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u637D';
console.log(char);  // Output: 捽

Java:

char c = '\u637D';
System.out.println(c);  // Output: 捽

JSON:

{"text": "\u637D"}  // Value: 捽

Python:

char = '\u637D'
print(char)  # Output: 捽

Perl:

my $char = "\x{637D}";
print $char;  # Output: 捽

PHP:

$char = "\x{637D}";
echo $char;  // Output: 捽

Ruby:

char = "\u{637D}"
puts char  # Output: 捽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25469;</p>  <!-- Display: 捽 -->

HTML Hexadecimal:

<p>HTML hex: &#x637D;</p>  <!-- Display: 捽 -->

URL Encoding:

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

Encodings

MD5:

e06008351a14affc9c50269ab69e134b

SHA1:

d495b6ef194174d802a1011a0ab5c17961e30f56

Base64:

5o29