Unicode Finder

"癕" U+7655(CJK UNIFIED IDEOGRAPH-7655)

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

Programming

C
\u7655
JavaScript
\u7655
Java
\u7655
Json
\u7655
Python
\u7655
Perl
\x{7655}
PHP
\x{7655}
Ruby
\u{7655}
Rust
\u{7655}
Go
\u7655

Web

CSS
\007655
HtmlDecimal
癕
HtmlHexadecimal
癕
Url
%E7%99%95

Code

MD5
3fbd8bed5077fdaad242bae94cc15541
Sha1
87fb4f784f43efb031132d580bcde42319bdd9be
Base64
55mV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7655';
console.log(char);  // Output: 癕

Java:

char c = '\u7655';
System.out.println(c);  // Output: 癕

JSON:

{"text": "\u7655"}  // Value: 癕

Python:

char = '\u7655'
print(char)  # Output: 癕

Perl:

my $char = "\x{7655}";
print $char;  # Output: 癕

PHP:

$char = "\x{7655}";
echo $char;  // Output: 癕

Ruby:

char = "\u{7655}"
puts char  # Output: 癕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007655";  /* Display: 癕 */
}

HTML Decimal:

<p>HTML decimal: &#30293;</p>  <!-- Display: 癕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7655;</p>  <!-- Display: 癕 -->

URL Encoding:

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

Encodings

MD5:

3fbd8bed5077fdaad242bae94cc15541

SHA1:

87fb4f784f43efb031132d580bcde42319bdd9be

Base64:

55mV