Unicode Finder

"粙" U+7C99(CJK UNIFIED IDEOGRAPH-7C99)

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

Programming

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

Web

CSS
\007C99
HtmlDecimal
粙
HtmlHexadecimal
粙
Url
%E7%B2%99

Code

MD5
b0aa38de69d629807839d4387429fa79
Sha1
6851025e4c7c73ea6b188e5c34dfe264fb2462b2
Base64
57KZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C99';
console.log(char);  // Output: 粙

Java:

char c = '\u7C99';
System.out.println(c);  // Output: 粙

JSON:

{"text": "\u7C99"}  // Value: 粙

Python:

char = '\u7C99'
print(char)  # Output: 粙

Perl:

my $char = "\x{7C99}";
print $char;  # Output: 粙

PHP:

$char = "\x{7C99}";
echo $char;  // Output: 粙

Ruby:

char = "\u{7C99}"
puts char  # Output: 粙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31897;</p>  <!-- Display: 粙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C99;</p>  <!-- Display: 粙 -->

URL Encoding:

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

Encodings

MD5:

b0aa38de69d629807839d4387429fa79

SHA1:

6851025e4c7c73ea6b188e5c34dfe264fb2462b2

Base64:

57KZ