Unicode Finder

"糱" U+7CF1(CJK UNIFIED IDEOGRAPH-7CF1)

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

Programming

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

Web

CSS
\007CF1
HtmlDecimal
糱
HtmlHexadecimal
糱
Url
%E7%B3%B1

Code

MD5
3f18e747b08e9bfcce04f2daa05c22da
Sha1
d4227bf30455eda631569b8f1ce6ab4d7d9f0ea2
Base64
57Ox

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7CF1';
console.log(char);  // Output: 糱

Java:

char c = '\u7CF1';
System.out.println(c);  // Output: 糱

JSON:

{"text": "\u7CF1"}  // Value: 糱

Python:

char = '\u7CF1'
print(char)  # Output: 糱

Perl:

my $char = "\x{7CF1}";
print $char;  # Output: 糱

PHP:

$char = "\x{7CF1}";
echo $char;  // Output: 糱

Ruby:

char = "\u{7CF1}"
puts char  # Output: 糱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31985;</p>  <!-- Display: 糱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CF1;</p>  <!-- Display: 糱 -->

URL Encoding:

// 糱 URL encoding
https://unicodefinder.com/search.php?query=%E7%B3%B1

Encodings

MD5:

3f18e747b08e9bfcce04f2daa05c22da

SHA1:

d4227bf30455eda631569b8f1ce6ab4d7d9f0ea2

Base64:

57Ox