Unicode Finder

"矉" U+77C9(CJK UNIFIED IDEOGRAPH-77C9)

U+77C9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-77C9

Programming

C
\u77C9
JavaScript
\u77C9
Java
\u77C9
Json
\u77C9
Python
\u77C9
Perl
\x{77C9}
PHP
\x{77C9}
Ruby
\u{77C9}
Rust
\u{77C9}
Go
\u77C9

Web

CSS
\0077C9
HtmlDecimal
矉
HtmlHexadecimal
矉
Url
%E7%9F%89

Code

MD5
123e408b674eeb676000682fcd3627b0
Sha1
9a6348fda9d27421533a329978a4c01141c443aa
Base64
55+J

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u77C9';
console.log(char);  // Output: 矉

Java:

char c = '\u77C9';
System.out.println(c);  // Output: 矉

JSON:

{"text": "\u77C9"}  // Value: 矉

Python:

char = '\u77C9'
print(char)  # Output: 矉

Perl:

my $char = "\x{77C9}";
print $char;  # Output: 矉

PHP:

$char = "\x{77C9}";
echo $char;  // Output: 矉

Ruby:

char = "\u{77C9}"
puts char  # Output: 矉

Rust:

let c = '\u{77C9}';
println!("{}", c);  // Output: 矉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077C9";  /* Display: 矉 */
}

HTML Decimal:

<p>HTML decimal: &#30665;</p>  <!-- Display: 矉 -->

HTML Hexadecimal:

<p>HTML hex: &#x77C9;</p>  <!-- Display: 矉 -->

URL Encoding:

// 矉 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%89

Encodings

MD5:

123e408b674eeb676000682fcd3627b0

SHA1:

9a6348fda9d27421533a329978a4c01141c443aa

Base64:

55+J