Unicode Finder

"癸" U+7678(CJK UNIFIED IDEOGRAPH-7678)

U+7678
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7678

Programming

C
\u7678
JavaScript
\u7678
Java
\u7678
Json
\u7678
Python
\u7678
Perl
\x{7678}
PHP
\x{7678}
Ruby
\u{7678}
Rust
\u{7678}
Go
\u7678

Web

CSS
\007678
HtmlDecimal
癸
HtmlHexadecimal
癸
Url
%E7%99%B8

Code

MD5
31473f9a0cf3f36473c69815f16c028f
Sha1
e2334d07b94c49ef15f442fb53fd19a7e5728d44
Base64
55m4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7678';
console.log(char);  // Output: 癸

Java:

char c = '\u7678';
System.out.println(c);  // Output: 癸

JSON:

{"text": "\u7678"}  // Value: 癸

Python:

char = '\u7678'
print(char)  # Output: 癸

Perl:

my $char = "\x{7678}";
print $char;  # Output: 癸

PHP:

$char = "\x{7678}";
echo $char;  // Output: 癸

Ruby:

char = "\u{7678}"
puts char  # Output: 癸

Rust:

let c = '\u{7678}';
println!("{}", c);  // Output: 癸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007678";  /* Display: 癸 */
}

HTML Decimal:

<p>HTML decimal: &#30328;</p>  <!-- Display: 癸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7678;</p>  <!-- Display: 癸 -->

URL Encoding:

// 癸 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%B8

Encodings

MD5:

31473f9a0cf3f36473c69815f16c028f

SHA1:

e2334d07b94c49ef15f442fb53fd19a7e5728d44

Base64:

55m4