Unicode Finder

"秎" U+79CE(CJK UNIFIED IDEOGRAPH-79CE)

U+79CE
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-79CE

Programming

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

Web

CSS
\0079CE
HtmlDecimal
秎
HtmlHexadecimal
秎
Url
%E7%A7%8E

Code

MD5
63ec3778c24cc5beb9cb055e9bb4c7e3
Sha1
a1310d6d80b83241e7789f8ea18abd51b0018aa8
Base64
56eO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u79CE';
console.log(char);  // Output: 秎

Java:

char c = '\u79CE';
System.out.println(c);  // Output: 秎

JSON:

{"text": "\u79CE"}  // Value: 秎

Python:

char = '\u79CE'
print(char)  # Output: 秎

Perl:

my $char = "\x{79CE}";
print $char;  # Output: 秎

PHP:

$char = "\x{79CE}";
echo $char;  // Output: 秎

Ruby:

char = "\u{79CE}"
puts char  # Output: 秎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31182;</p>  <!-- Display: 秎 -->

HTML Hexadecimal:

<p>HTML hex: &#x79CE;</p>  <!-- Display: 秎 -->

URL Encoding:

// 秎 URL encoding
https://unicodefinder.com/search.php?query=%E7%A7%8E

Encodings

MD5:

63ec3778c24cc5beb9cb055e9bb4c7e3

SHA1:

a1310d6d80b83241e7789f8ea18abd51b0018aa8

Base64:

56eO