Unicode Finder

"缓" U+7F13(CJK UNIFIED IDEOGRAPH-7F13)

U+7F13
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7F13

Programming

C
\u7F13
JavaScript
\u7F13
Java
\u7F13
Json
\u7F13
Python
\u7F13
Perl
\x{7F13}
PHP
\x{7F13}
Ruby
\u{7F13}
Rust
\u{7F13}
Go
\u7F13

Web

CSS
\007F13
HtmlDecimal
缓
HtmlHexadecimal
缓
Url
%E7%BC%93

Code

MD5
89447fdf2fed3a0461df98b19afe60bd
Sha1
f6d88d3a4f2eee3fc8f8780341c85613f3b12322
Base64
57yT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F13';
console.log(char);  // Output: 缓

Java:

char c = '\u7F13';
System.out.println(c);  // Output: 缓

JSON:

{"text": "\u7F13"}  // Value: 缓

Python:

char = '\u7F13'
print(char)  # Output: 缓

Perl:

my $char = "\x{7F13}";
print $char;  # Output: 缓

PHP:

$char = "\x{7F13}";
echo $char;  // Output: 缓

Ruby:

char = "\u{7F13}"
puts char  # Output: 缓

Rust:

let c = '\u{7F13}';
println!("{}", c);  // Output: 缓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F13";  /* Display: 缓 */
}

HTML Decimal:

<p>HTML decimal: &#32531;</p>  <!-- Display: 缓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F13;</p>  <!-- Display: 缓 -->

URL Encoding:

// 缓 URL encoding
https://unicodefinder.com/search.php?query=%E7%BC%93

Encodings

MD5:

89447fdf2fed3a0461df98b19afe60bd

SHA1:

f6d88d3a4f2eee3fc8f8780341c85613f3b12322

Base64:

57yT