Unicode Finder

"秷" U+79F7(CJK UNIFIED IDEOGRAPH-79F7)

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

Programming

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

Web

CSS
\0079F7
HtmlDecimal
秷
HtmlHexadecimal
秷
Url
%E7%A7%B7

Code

MD5
8ca2ddf77f8b851767df17ca2686c523
Sha1
b8c838ac89a8d5e2ef30d1703de289847fafe91f
Base64
56e3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79F7';
console.log(char);  // Output: 秷

Java:

char c = '\u79F7';
System.out.println(c);  // Output: 秷

JSON:

{"text": "\u79F7"}  // Value: 秷

Python:

char = '\u79F7'
print(char)  # Output: 秷

Perl:

my $char = "\x{79F7}";
print $char;  # Output: 秷

PHP:

$char = "\x{79F7}";
echo $char;  // Output: 秷

Ruby:

char = "\u{79F7}"
puts char  # Output: 秷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31223;</p>  <!-- Display: 秷 -->

HTML Hexadecimal:

<p>HTML hex: &#x79F7;</p>  <!-- Display: 秷 -->

URL Encoding:

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

Encodings

MD5:

8ca2ddf77f8b851767df17ca2686c523

SHA1:

b8c838ac89a8d5e2ef30d1703de289847fafe91f

Base64:

56e3