Unicode Finder

"短" U+77ED(CJK UNIFIED IDEOGRAPH-77ED)

U+77ED
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-77ED

Programming

C
\u77ED
JavaScript
\u77ED
Java
\u77ED
Json
\u77ED
Python
\u77ED
Perl
\x{77ED}
PHP
\x{77ED}
Ruby
\u{77ED}
Rust
\u{77ED}
Go
\u77ED

Web

CSS
\0077ED
HtmlDecimal
短
HtmlHexadecimal
短
Url
%E7%9F%AD

Code

MD5
b58b94d8073cc24529058a9e0cdbee94
Sha1
5f413d72c0b1851a8f01151d3448586514447dad
Base64
55+t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77ED';
console.log(char);  // Output: 短

Java:

char c = '\u77ED';
System.out.println(c);  // Output: 短

JSON:

{"text": "\u77ED"}  // Value: 短

Python:

char = '\u77ED'
print(char)  # Output: 短

Perl:

my $char = "\x{77ED}";
print $char;  # Output: 短

PHP:

$char = "\x{77ED}";
echo $char;  // Output: 短

Ruby:

char = "\u{77ED}"
puts char  # Output: 短

Rust:

let c = '\u{77ED}';
println!("{}", c);  // Output: 短

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077ED";  /* Display: 短 */
}

HTML Decimal:

<p>HTML decimal: &#30701;</p>  <!-- Display: 短 -->

HTML Hexadecimal:

<p>HTML hex: &#x77ED;</p>  <!-- Display: 短 -->

URL Encoding:

// 短 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%AD

Encodings

MD5:

b58b94d8073cc24529058a9e0cdbee94

SHA1:

5f413d72c0b1851a8f01151d3448586514447dad

Base64:

55+t