Unicode Finder

"秹" U+79F9(CJK UNIFIED IDEOGRAPH-79F9)

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

Programming

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

Web

CSS
\0079F9
HtmlDecimal
秹
HtmlHexadecimal
秹
Url
%E7%A7%B9

Code

MD5
9bddbb09d84f8faba54e2ba17ff005dd
Sha1
db4f9eecf8251ec11aabd5afb295998e9c001dbb
Base64
56e5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79F9';
console.log(char);  // Output: 秹

Java:

char c = '\u79F9';
System.out.println(c);  // Output: 秹

JSON:

{"text": "\u79F9"}  // Value: 秹

Python:

char = '\u79F9'
print(char)  # Output: 秹

Perl:

my $char = "\x{79F9}";
print $char;  # Output: 秹

PHP:

$char = "\x{79F9}";
echo $char;  // Output: 秹

Ruby:

char = "\u{79F9}"
puts char  # Output: 秹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31225;</p>  <!-- Display: 秹 -->

HTML Hexadecimal:

<p>HTML hex: &#x79F9;</p>  <!-- Display: 秹 -->

URL Encoding:

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

Encodings

MD5:

9bddbb09d84f8faba54e2ba17ff005dd

SHA1:

db4f9eecf8251ec11aabd5afb295998e9c001dbb

Base64:

56e5