Unicode Finder

"怍" U+600D(CJK UNIFIED IDEOGRAPH-600D)

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

Programming

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

Web

CSS
\00600D
HtmlDecimal
怍
HtmlHexadecimal
怍
Url
%E6%80%8D

Code

MD5
5a815c7a41fd34a348ff6d44eab1b16e
Sha1
c80544720c43bebafd306be2355f66e7adfc884d
Base64
5oCN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u600D';
console.log(char);  // Output: 怍

Java:

char c = '\u600D';
System.out.println(c);  // Output: 怍

JSON:

{"text": "\u600D"}  // Value: 怍

Python:

char = '\u600D'
print(char)  # Output: 怍

Perl:

my $char = "\x{600D}";
print $char;  # Output: 怍

PHP:

$char = "\x{600D}";
echo $char;  // Output: 怍

Ruby:

char = "\u{600D}"
puts char  # Output: 怍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24589;</p>  <!-- Display: 怍 -->

HTML Hexadecimal:

<p>HTML hex: &#x600D;</p>  <!-- Display: 怍 -->

URL Encoding:

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

Encodings

MD5:

5a815c7a41fd34a348ff6d44eab1b16e

SHA1:

c80544720c43bebafd306be2355f66e7adfc884d

Base64:

5oCN