Unicode Finder

"粬" U+7CAC(CJK UNIFIED IDEOGRAPH-7CAC)

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

Programming

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

Web

CSS
\007CAC
HtmlDecimal
粬
HtmlHexadecimal
粬
Url
%E7%B2%AC

Code

MD5
f80768a337076981ca7e7e817d19f69e
Sha1
bb78530e73df8ce6e106100ce3521be92448486c
Base64
57Ks

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7CAC';
console.log(char);  // Output: 粬

Java:

char c = '\u7CAC';
System.out.println(c);  // Output: 粬

JSON:

{"text": "\u7CAC"}  // Value: 粬

Python:

char = '\u7CAC'
print(char)  # Output: 粬

Perl:

my $char = "\x{7CAC}";
print $char;  # Output: 粬

PHP:

$char = "\x{7CAC}";
echo $char;  // Output: 粬

Ruby:

char = "\u{7CAC}"
puts char  # Output: 粬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31916;</p>  <!-- Display: 粬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CAC;</p>  <!-- Display: 粬 -->

URL Encoding:

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

Encodings

MD5:

f80768a337076981ca7e7e817d19f69e

SHA1:

bb78530e73df8ce6e106100ce3521be92448486c

Base64:

57Ks