Unicode Finder

"果" U+679C(CJK UNIFIED IDEOGRAPH-679C)

U+679C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-679C

Programming

C
\u679C
JavaScript
\u679C
Java
\u679C
Json
\u679C
Python
\u679C
Perl
\x{679C}
PHP
\x{679C}
Ruby
\u{679C}
Rust
\u{679C}
Go
\u679C

Web

CSS
\00679C
HtmlDecimal
果
HtmlHexadecimal
果
Url
%E6%9E%9C

Code

MD5
2bbb3b39928f0761a66eda6de3edeb27
Sha1
d62c08d357e1fb3ef88c580c85e5c7622860baaa
Base64
5p6c

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u679C';
console.log(char);  // Output: 果

Java:

char c = '\u679C';
System.out.println(c);  // Output: 果

JSON:

{"text": "\u679C"}  // Value: 果

Python:

char = '\u679C'
print(char)  # Output: 果

Perl:

my $char = "\x{679C}";
print $char;  # Output: 果

PHP:

$char = "\x{679C}";
echo $char;  // Output: 果

Ruby:

char = "\u{679C}"
puts char  # Output: 果

Rust:

let c = '\u{679C}';
println!("{}", c);  // Output: 果

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00679C";  /* Display: 果 */
}

HTML Decimal:

<p>HTML decimal: &#26524;</p>  <!-- Display: 果 -->

HTML Hexadecimal:

<p>HTML hex: &#x679C;</p>  <!-- Display: 果 -->

URL Encoding:

// 果 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%9C

Encodings

MD5:

2bbb3b39928f0761a66eda6de3edeb27

SHA1:

d62c08d357e1fb3ef88c580c85e5c7622860baaa

Base64:

5p6c