Unicode Finder

"思" U+601D(CJK UNIFIED IDEOGRAPH-601D)

U+601D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-601D

Programming

C
\u601D
JavaScript
\u601D
Java
\u601D
Json
\u601D
Python
\u601D
Perl
\x{601D}
PHP
\x{601D}
Ruby
\u{601D}
Rust
\u{601D}
Go
\u601D

Web

CSS
\00601D
HtmlDecimal
思
HtmlHexadecimal
思
Url
%E6%80%9D

Code

MD5
a363a77bd7e9befbc425db76e08040f1
Sha1
faf279e73f14bd603ffdd5f7efd062eeec12d7df
Base64
5oCd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u601D';
console.log(char);  // Output: 思

Java:

char c = '\u601D';
System.out.println(c);  // Output: 思

JSON:

{"text": "\u601D"}  // Value: 思

Python:

char = '\u601D'
print(char)  # Output: 思

Perl:

my $char = "\x{601D}";
print $char;  # Output: 思

PHP:

$char = "\x{601D}";
echo $char;  // Output: 思

Ruby:

char = "\u{601D}"
puts char  # Output: 思

Rust:

let c = '\u{601D}';
println!("{}", c);  // Output: 思

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00601D";  /* Display: 思 */
}

HTML Decimal:

<p>HTML decimal: &#24605;</p>  <!-- Display: 思 -->

HTML Hexadecimal:

<p>HTML hex: &#x601D;</p>  <!-- Display: 思 -->

URL Encoding:

// 思 URL encoding
https://unicodefinder.com/search.php?query=%E6%80%9D

Encodings

MD5:

a363a77bd7e9befbc425db76e08040f1

SHA1:

faf279e73f14bd603ffdd5f7efd062eeec12d7df

Base64:

5oCd