Unicode Finder

"扯" U+626F(CJK UNIFIED IDEOGRAPH-626F)

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

Programming

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

Web

CSS
\00626F
HtmlDecimal
扯
HtmlHexadecimal
扯
Url
%E6%89%AF

Code

MD5
31d5f57d3f52c1e4de029e270887a290
Sha1
cdbbca48e49fb28b773ab1a3af08a0ac869fdd43
Base64
5omv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u626F';
console.log(char);  // Output: 扯

Java:

char c = '\u626F';
System.out.println(c);  // Output: 扯

JSON:

{"text": "\u626F"}  // Value: 扯

Python:

char = '\u626F'
print(char)  # Output: 扯

Perl:

my $char = "\x{626F}";
print $char;  # Output: 扯

PHP:

$char = "\x{626F}";
echo $char;  // Output: 扯

Ruby:

char = "\u{626F}"
puts char  # Output: 扯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25199;</p>  <!-- Display: 扯 -->

HTML Hexadecimal:

<p>HTML hex: &#x626F;</p>  <!-- Display: 扯 -->

URL Encoding:

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

Encodings

MD5:

31d5f57d3f52c1e4de029e270887a290

SHA1:

cdbbca48e49fb28b773ab1a3af08a0ac869fdd43

Base64:

5omv