Unicode Finder

"痷" U+75F7(CJK UNIFIED IDEOGRAPH-75F7)

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

Programming

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

Web

CSS
\0075F7
HtmlDecimal
痷
HtmlHexadecimal
痷
Url
%E7%97%B7

Code

MD5
d7c13405ea4088006db303d617185761
Sha1
7d74e9951e14f8c923fe8fab754db7ed1fe0707d
Base64
55e3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75F7';
console.log(char);  // Output: 痷

Java:

char c = '\u75F7';
System.out.println(c);  // Output: 痷

JSON:

{"text": "\u75F7"}  // Value: 痷

Python:

char = '\u75F7'
print(char)  # Output: 痷

Perl:

my $char = "\x{75F7}";
print $char;  # Output: 痷

PHP:

$char = "\x{75F7}";
echo $char;  // Output: 痷

Ruby:

char = "\u{75F7}"
puts char  # Output: 痷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30199;</p>  <!-- Display: 痷 -->

HTML Hexadecimal:

<p>HTML hex: &#x75F7;</p>  <!-- Display: 痷 -->

URL Encoding:

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

Encodings

MD5:

d7c13405ea4088006db303d617185761

SHA1:

7d74e9951e14f8c923fe8fab754db7ed1fe0707d

Base64:

55e3