Unicode Finder

"枌" U+678C(CJK UNIFIED IDEOGRAPH-678C)

U+678C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-678C

Programming

C
\u678C
JavaScript
\u678C
Java
\u678C
Json
\u678C
Python
\u678C
Perl
\x{678C}
PHP
\x{678C}
Ruby
\u{678C}
Rust
\u{678C}
Go
\u678C

Web

CSS
\00678C
HtmlDecimal
枌
HtmlHexadecimal
枌
Url
%E6%9E%8C

Code

MD5
f2f02a433f5774760cfc11ce09d02dd7
Sha1
e32feecdd83de96d3d733fb5fe0b1a9474d4288e
Base64
5p6M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u678C';
console.log(char);  // Output: 枌

Java:

char c = '\u678C';
System.out.println(c);  // Output: 枌

JSON:

{"text": "\u678C"}  // Value: 枌

Python:

char = '\u678C'
print(char)  # Output: 枌

Perl:

my $char = "\x{678C}";
print $char;  # Output: 枌

PHP:

$char = "\x{678C}";
echo $char;  // Output: 枌

Ruby:

char = "\u{678C}"
puts char  # Output: 枌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26508;</p>  <!-- Display: 枌 -->

HTML Hexadecimal:

<p>HTML hex: &#x678C;</p>  <!-- Display: 枌 -->

URL Encoding:

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

Encodings

MD5:

f2f02a433f5774760cfc11ce09d02dd7

SHA1:

e32feecdd83de96d3d733fb5fe0b1a9474d4288e

Base64:

5p6M