Unicode Finder

"痶" U+75F6(CJK UNIFIED IDEOGRAPH-75F6)

U+75F6
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-75F6

Programming

C
\u75F6
JavaScript
\u75F6
Java
\u75F6
Json
\u75F6
Python
\u75F6
Perl
\x{75F6}
PHP
\x{75F6}
Ruby
\u{75F6}
Rust
\u{75F6}
Go
\u75F6

Web

CSS
\0075F6
HtmlDecimal
痶
HtmlHexadecimal
痶
Url
%E7%97%B6

Code

MD5
5a6b2ba62303b1db520a6ceef7f77cd2
Sha1
65245ebfc72b10dcca973d182ab8d09e551bd160
Base64
55e2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75F6';
console.log(char);  // Output: 痶

Java:

char c = '\u75F6';
System.out.println(c);  // Output: 痶

JSON:

{"text": "\u75F6"}  // Value: 痶

Python:

char = '\u75F6'
print(char)  # Output: 痶

Perl:

my $char = "\x{75F6}";
print $char;  # Output: 痶

PHP:

$char = "\x{75F6}";
echo $char;  // Output: 痶

Ruby:

char = "\u{75F6}"
puts char  # Output: 痶

Rust:

let c = '\u{75F6}';
println!("{}", c);  // Output: 痶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0075F6";  /* Display: 痶 */
}

HTML Decimal:

<p>HTML decimal: &#30198;</p>  <!-- Display: 痶 -->

HTML Hexadecimal:

<p>HTML hex: &#x75F6;</p>  <!-- Display: 痶 -->

URL Encoding:

// 痶 URL encoding
https://unicodefinder.com/search.php?query=%E7%97%B6

Encodings

MD5:

5a6b2ba62303b1db520a6ceef7f77cd2

SHA1:

65245ebfc72b10dcca973d182ab8d09e551bd160

Base64:

55e2