Unicode Finder

"秱" U+79F1(CJK UNIFIED IDEOGRAPH-79F1)

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

Programming

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

Web

CSS
\0079F1
HtmlDecimal
秱
HtmlHexadecimal
秱
Url
%E7%A7%B1

Code

MD5
78d0604006c28f1f0f2226e241e48ad0
Sha1
068c714ba0326a577418007b5999bfd7fd13e727
Base64
56ex

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79F1';
console.log(char);  // Output: 秱

Java:

char c = '\u79F1';
System.out.println(c);  // Output: 秱

JSON:

{"text": "\u79F1"}  // Value: 秱

Python:

char = '\u79F1'
print(char)  # Output: 秱

Perl:

my $char = "\x{79F1}";
print $char;  # Output: 秱

PHP:

$char = "\x{79F1}";
echo $char;  // Output: 秱

Ruby:

char = "\u{79F1}"
puts char  # Output: 秱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31217;</p>  <!-- Display: 秱 -->

HTML Hexadecimal:

<p>HTML hex: &#x79F1;</p>  <!-- Display: 秱 -->

URL Encoding:

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

Encodings

MD5:

78d0604006c28f1f0f2226e241e48ad0

SHA1:

068c714ba0326a577418007b5999bfd7fd13e727

Base64:

56ex