Unicode Finder

"禾" U+79BE(CJK UNIFIED IDEOGRAPH-79BE)

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

Programming

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

Web

CSS
\0079BE
HtmlDecimal
禾
HtmlHexadecimal
禾
Url
%E7%A6%BE

Code

MD5
86469aae1b9e21accdd8e8382915338f
Sha1
2c8cfde621aef6cf2c9fdb83fb7d0f4e0d88a9c2
Base64
56a+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79BE';
console.log(char);  // Output: 禾

Java:

char c = '\u79BE';
System.out.println(c);  // Output: 禾

JSON:

{"text": "\u79BE"}  // Value: 禾

Python:

char = '\u79BE'
print(char)  # Output: 禾

Perl:

my $char = "\x{79BE}";
print $char;  # Output: 禾

PHP:

$char = "\x{79BE}";
echo $char;  // Output: 禾

Ruby:

char = "\u{79BE}"
puts char  # Output: 禾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31166;</p>  <!-- Display: 禾 -->

HTML Hexadecimal:

<p>HTML hex: &#x79BE;</p>  <!-- Display: 禾 -->

URL Encoding:

// 禾 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%BE

Encodings

MD5:

86469aae1b9e21accdd8e8382915338f

SHA1:

2c8cfde621aef6cf2c9fdb83fb7d0f4e0d88a9c2

Base64:

56a+