Unicode Finder

"寇" U+5BC7(CJK UNIFIED IDEOGRAPH-5BC7)

U+5BC7
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5BC7

Programming

C
\u5BC7
JavaScript
\u5BC7
Java
\u5BC7
Json
\u5BC7
Python
\u5BC7
Perl
\x{5BC7}
PHP
\x{5BC7}
Ruby
\u{5BC7}
Rust
\u{5BC7}
Go
\u5BC7

Web

CSS
\005BC7
HtmlDecimal
寇
HtmlHexadecimal
寇
Url
%E5%AF%87

Code

MD5
f9f62739e604d9ba527cc6e45d019710
Sha1
06bc57a9f83c776c1906521caa8c8b4cf099284d
Base64
5a+H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BC7';
console.log(char);  // Output: 寇

Java:

char c = '\u5BC7';
System.out.println(c);  // Output: 寇

JSON:

{"text": "\u5BC7"}  // Value: 寇

Python:

char = '\u5BC7'
print(char)  # Output: 寇

Perl:

my $char = "\x{5BC7}";
print $char;  # Output: 寇

PHP:

$char = "\x{5BC7}";
echo $char;  // Output: 寇

Ruby:

char = "\u{5BC7}"
puts char  # Output: 寇

Rust:

let c = '\u{5BC7}';
println!("{}", c);  // Output: 寇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BC7";  /* Display: 寇 */
}

HTML Decimal:

<p>HTML decimal: &#23495;</p>  <!-- Display: 寇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BC7;</p>  <!-- Display: 寇 -->

URL Encoding:

// 寇 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%87

Encodings

MD5:

f9f62739e604d9ba527cc6e45d019710

SHA1:

06bc57a9f83c776c1906521caa8c8b4cf099284d

Base64:

5a+H