Unicode Finder

"疏" U+758F(CJK UNIFIED IDEOGRAPH-758F)

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

Programming

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

Web

CSS
\00758F
HtmlDecimal
疏
HtmlHexadecimal
疏
Url
%E7%96%8F

Code

MD5
3df5092fb54351fbec282a3282679165
Sha1
64a53134842e4a9310075a5c741387aa6cecf37b
Base64
55aP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u758F';
console.log(char);  // Output: 疏

Java:

char c = '\u758F';
System.out.println(c);  // Output: 疏

JSON:

{"text": "\u758F"}  // Value: 疏

Python:

char = '\u758F'
print(char)  # Output: 疏

Perl:

my $char = "\x{758F}";
print $char;  # Output: 疏

PHP:

$char = "\x{758F}";
echo $char;  // Output: 疏

Ruby:

char = "\u{758F}"
puts char  # Output: 疏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30095;</p>  <!-- Display: 疏 -->

HTML Hexadecimal:

<p>HTML hex: &#x758F;</p>  <!-- Display: 疏 -->

URL Encoding:

// 疏 URL encoding
https://unicodefinder.com/search.php?query=%E7%96%8F

Encodings

MD5:

3df5092fb54351fbec282a3282679165

SHA1:

64a53134842e4a9310075a5c741387aa6cecf37b

Base64:

55aP