Unicode Finder

"秕" U+79D5(CJK UNIFIED IDEOGRAPH-79D5)

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

Programming

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

Web

CSS
\0079D5
HtmlDecimal
秕
HtmlHexadecimal
秕
Url
%E7%A7%95

Code

MD5
401f328cdd9d2236aeda87b1020202d3
Sha1
a69007c39de9ca86a96418314e008fc03762c3f7
Base64
56eV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79D5';
console.log(char);  // Output: 秕

Java:

char c = '\u79D5';
System.out.println(c);  // Output: 秕

JSON:

{"text": "\u79D5"}  // Value: 秕

Python:

char = '\u79D5'
print(char)  # Output: 秕

Perl:

my $char = "\x{79D5}";
print $char;  # Output: 秕

PHP:

$char = "\x{79D5}";
echo $char;  // Output: 秕

Ruby:

char = "\u{79D5}"
puts char  # Output: 秕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31189;</p>  <!-- Display: 秕 -->

HTML Hexadecimal:

<p>HTML hex: &#x79D5;</p>  <!-- Display: 秕 -->

URL Encoding:

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

Encodings

MD5:

401f328cdd9d2236aeda87b1020202d3

SHA1:

a69007c39de9ca86a96418314e008fc03762c3f7

Base64:

56eV