Unicode Finder

"癳" U+7673(CJK UNIFIED IDEOGRAPH-7673)

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

Programming

C
\u7673
JavaScript
\u7673
Java
\u7673
Json
\u7673
Python
\u7673
Perl
\x{7673}
PHP
\x{7673}
Ruby
\u{7673}
Rust
\u{7673}
Go
\u7673

Web

CSS
\007673
HtmlDecimal
癳
HtmlHexadecimal
癳
Url
%E7%99%B3

Code

MD5
9d0ef05c27d3ac187688189e04e36913
Sha1
7bb772cfe462ab304779d69a9434524de768aac4
Base64
55mz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7673';
console.log(char);  // Output: 癳

Java:

char c = '\u7673';
System.out.println(c);  // Output: 癳

JSON:

{"text": "\u7673"}  // Value: 癳

Python:

char = '\u7673'
print(char)  # Output: 癳

Perl:

my $char = "\x{7673}";
print $char;  # Output: 癳

PHP:

$char = "\x{7673}";
echo $char;  // Output: 癳

Ruby:

char = "\u{7673}"
puts char  # Output: 癳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007673";  /* Display: 癳 */
}

HTML Decimal:

<p>HTML decimal: &#30323;</p>  <!-- Display: 癳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7673;</p>  <!-- Display: 癳 -->

URL Encoding:

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

Encodings

MD5:

9d0ef05c27d3ac187688189e04e36913

SHA1:

7bb772cfe462ab304779d69a9434524de768aac4

Base64:

55mz