Unicode Finder

"癶" U+7676(CJK UNIFIED IDEOGRAPH-7676)

U+7676
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7676

Programming

C
\u7676
JavaScript
\u7676
Java
\u7676
Json
\u7676
Python
\u7676
Perl
\x{7676}
PHP
\x{7676}
Ruby
\u{7676}
Rust
\u{7676}
Go
\u7676

Web

CSS
\007676
HtmlDecimal
癶
HtmlHexadecimal
癶
Url
%E7%99%B6

Code

MD5
5e78962278facfb7af8c179146d7dc5c
Sha1
9dd1cddb595b0a9deeae5e6c013a6aa2be038b64
Base64
55m2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7676';
console.log(char);  // Output: 癶

Java:

char c = '\u7676';
System.out.println(c);  // Output: 癶

JSON:

{"text": "\u7676"}  // Value: 癶

Python:

char = '\u7676'
print(char)  # Output: 癶

Perl:

my $char = "\x{7676}";
print $char;  # Output: 癶

PHP:

$char = "\x{7676}";
echo $char;  // Output: 癶

Ruby:

char = "\u{7676}"
puts char  # Output: 癶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007676";  /* Display: 癶 */
}

HTML Decimal:

<p>HTML decimal: &#30326;</p>  <!-- Display: 癶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7676;</p>  <!-- Display: 癶 -->

URL Encoding:

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

Encodings

MD5:

5e78962278facfb7af8c179146d7dc5c

SHA1:

9dd1cddb595b0a9deeae5e6c013a6aa2be038b64

Base64:

55m2