Unicode Finder

"癰" U+7670(CJK UNIFIED IDEOGRAPH-7670)

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

Programming

C
\u7670
JavaScript
\u7670
Java
\u7670
Json
\u7670
Python
\u7670
Perl
\x{7670}
PHP
\x{7670}
Ruby
\u{7670}
Rust
\u{7670}
Go
\u7670

Web

CSS
\007670
HtmlDecimal
癰
HtmlHexadecimal
癰
Url
%E7%99%B0

Code

MD5
5ca0b295136191f4381d82d56e21ecd3
Sha1
6518c4495a7c258ce9e7a23e4d4e9c208fa15783
Base64
55mw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7670';
console.log(char);  // Output: 癰

Java:

char c = '\u7670';
System.out.println(c);  // Output: 癰

JSON:

{"text": "\u7670"}  // Value: 癰

Python:

char = '\u7670'
print(char)  # Output: 癰

Perl:

my $char = "\x{7670}";
print $char;  # Output: 癰

PHP:

$char = "\x{7670}";
echo $char;  // Output: 癰

Ruby:

char = "\u{7670}"
puts char  # Output: 癰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007670";  /* Display: 癰 */
}

HTML Decimal:

<p>HTML decimal: &#30320;</p>  <!-- Display: 癰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7670;</p>  <!-- Display: 癰 -->

URL Encoding:

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

Encodings

MD5:

5ca0b295136191f4381d82d56e21ecd3

SHA1:

6518c4495a7c258ce9e7a23e4d4e9c208fa15783

Base64:

55mw