Unicode Finder

"秬" U+79EC(CJK UNIFIED IDEOGRAPH-79EC)

U+79EC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-79EC

Programming

C
\u79EC
JavaScript
\u79EC
Java
\u79EC
Json
\u79EC
Python
\u79EC
Perl
\x{79EC}
PHP
\x{79EC}
Ruby
\u{79EC}
Rust
\u{79EC}
Go
\u79EC

Web

CSS
\0079EC
HtmlDecimal
秬
HtmlHexadecimal
秬
Url
%E7%A7%AC

Code

MD5
645e92afb024813461908053d1ba3981
Sha1
b320a50701d2f0cfbf07b21fb981b94ba7aedafd
Base64
56es

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79EC';
console.log(char);  // Output: 秬

Java:

char c = '\u79EC';
System.out.println(c);  // Output: 秬

JSON:

{"text": "\u79EC"}  // Value: 秬

Python:

char = '\u79EC'
print(char)  # Output: 秬

Perl:

my $char = "\x{79EC}";
print $char;  # Output: 秬

PHP:

$char = "\x{79EC}";
echo $char;  // Output: 秬

Ruby:

char = "\u{79EC}"
puts char  # Output: 秬

Rust:

let c = '\u{79EC}';
println!("{}", c);  // Output: 秬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0079EC";  /* Display: 秬 */
}

HTML Decimal:

<p>HTML decimal: &#31212;</p>  <!-- Display: 秬 -->

HTML Hexadecimal:

<p>HTML hex: &#x79EC;</p>  <!-- Display: 秬 -->

URL Encoding:

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

Encodings

MD5:

645e92afb024813461908053d1ba3981

SHA1:

b320a50701d2f0cfbf07b21fb981b94ba7aedafd

Base64:

56es