Unicode Finder

"粭" U+7CAD(CJK UNIFIED IDEOGRAPH-7CAD)

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

Programming

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

Web

CSS
\007CAD
HtmlDecimal
粭
HtmlHexadecimal
粭
Url
%E7%B2%AD

Code

MD5
043a1f145447d53b8806c4a34b4c850c
Sha1
48162c753109ebd4b65fa4ee96f61fc772de359e
Base64
57Kt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7CAD';
console.log(char);  // Output: 粭

Java:

char c = '\u7CAD';
System.out.println(c);  // Output: 粭

JSON:

{"text": "\u7CAD"}  // Value: 粭

Python:

char = '\u7CAD'
print(char)  # Output: 粭

Perl:

my $char = "\x{7CAD}";
print $char;  # Output: 粭

PHP:

$char = "\x{7CAD}";
echo $char;  // Output: 粭

Ruby:

char = "\u{7CAD}"
puts char  # Output: 粭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31917;</p>  <!-- Display: 粭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CAD;</p>  <!-- Display: 粭 -->

URL Encoding:

// 粭 URL encoding
https://unicodefinder.com/search.php?query=%E7%B2%AD

Encodings

MD5:

043a1f145447d53b8806c4a34b4c850c

SHA1:

48162c753109ebd4b65fa4ee96f61fc772de359e

Base64:

57Kt