Unicode Finder

"癲" U+7672(CJK UNIFIED IDEOGRAPH-7672)

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

Programming

C
\u7672
JavaScript
\u7672
Java
\u7672
Json
\u7672
Python
\u7672
Perl
\x{7672}
PHP
\x{7672}
Ruby
\u{7672}
Rust
\u{7672}
Go
\u7672

Web

CSS
\007672
HtmlDecimal
癲
HtmlHexadecimal
癲
Url
%E7%99%B2

Code

MD5
1c9234f86cdd8b7c2d8174bb42fc97cd
Sha1
b627630a2ec9619f77388946d3e977b36e112683
Base64
55my

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7672';
console.log(char);  // Output: 癲

Java:

char c = '\u7672';
System.out.println(c);  // Output: 癲

JSON:

{"text": "\u7672"}  // Value: 癲

Python:

char = '\u7672'
print(char)  # Output: 癲

Perl:

my $char = "\x{7672}";
print $char;  # Output: 癲

PHP:

$char = "\x{7672}";
echo $char;  // Output: 癲

Ruby:

char = "\u{7672}"
puts char  # Output: 癲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007672";  /* Display: 癲 */
}

HTML Decimal:

<p>HTML decimal: &#30322;</p>  <!-- Display: 癲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7672;</p>  <!-- Display: 癲 -->

URL Encoding:

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

Encodings

MD5:

1c9234f86cdd8b7c2d8174bb42fc97cd

SHA1:

b627630a2ec9619f77388946d3e977b36e112683

Base64:

55my