Unicode Finder

"痕" U+75D5(CJK UNIFIED IDEOGRAPH-75D5)

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

Programming

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

Web

CSS
\0075D5
HtmlDecimal
痕
HtmlHexadecimal
痕
Url
%E7%97%95

Code

MD5
80495ec7f2bdef8c130c6e9a055f4a7d
Sha1
886db1366ef5b713efaaa914ed5e076a6947ac65
Base64
55eV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75D5';
console.log(char);  // Output: 痕

Java:

char c = '\u75D5';
System.out.println(c);  // Output: 痕

JSON:

{"text": "\u75D5"}  // Value: 痕

Python:

char = '\u75D5'
print(char)  # Output: 痕

Perl:

my $char = "\x{75D5}";
print $char;  # Output: 痕

PHP:

$char = "\x{75D5}";
echo $char;  // Output: 痕

Ruby:

char = "\u{75D5}"
puts char  # Output: 痕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30165;</p>  <!-- Display: 痕 -->

HTML Hexadecimal:

<p>HTML hex: &#x75D5;</p>  <!-- Display: 痕 -->

URL Encoding:

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

Encodings

MD5:

80495ec7f2bdef8c130c6e9a055f4a7d

SHA1:

886db1366ef5b713efaaa914ed5e076a6947ac65

Base64:

55eV