Unicode Finder

"扭" U+626D(CJK UNIFIED IDEOGRAPH-626D)

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

Programming

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

Web

CSS
\00626D
HtmlDecimal
扭
HtmlHexadecimal
扭
Url
%E6%89%AD

Code

MD5
9968b763629c0e20cba9c85da3dc5f24
Sha1
46429897e00b293f62a05507d3229ec678bf1fe4
Base64
5omt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u626D';
console.log(char);  // Output: 扭

Java:

char c = '\u626D';
System.out.println(c);  // Output: 扭

JSON:

{"text": "\u626D"}  // Value: 扭

Python:

char = '\u626D'
print(char)  # Output: 扭

Perl:

my $char = "\x{626D}";
print $char;  # Output: 扭

PHP:

$char = "\x{626D}";
echo $char;  // Output: 扭

Ruby:

char = "\u{626D}"
puts char  # Output: 扭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25197;</p>  <!-- Display: 扭 -->

HTML Hexadecimal:

<p>HTML hex: &#x626D;</p>  <!-- Display: 扭 -->

URL Encoding:

// 扭 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%AD

Encodings

MD5:

9968b763629c0e20cba9c85da3dc5f24

SHA1:

46429897e00b293f62a05507d3229ec678bf1fe4

Base64:

5omt