Unicode Finder

"特" U+7279(CJK UNIFIED IDEOGRAPH-7279)

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

Programming

C
\u7279
JavaScript
\u7279
Java
\u7279
Json
\u7279
Python
\u7279
Perl
\x{7279}
PHP
\x{7279}
Ruby
\u{7279}
Rust
\u{7279}
Go
\u7279

Web

CSS
\007279
HtmlDecimal
特
HtmlHexadecimal
特
Url
%E7%89%B9

Code

MD5
24507b7ad429dd048cb3467049de1f28
Sha1
20d7a24045bbe63835a1e9e58fd94e56c0311b61
Base64
54m5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7279';
console.log(char);  // Output: 特

Java:

char c = '\u7279';
System.out.println(c);  // Output: 特

JSON:

{"text": "\u7279"}  // Value: 特

Python:

char = '\u7279'
print(char)  # Output: 特

Perl:

my $char = "\x{7279}";
print $char;  # Output: 特

PHP:

$char = "\x{7279}";
echo $char;  // Output: 特

Ruby:

char = "\u{7279}"
puts char  # Output: 特

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007279";  /* Display: 特 */
}

HTML Decimal:

<p>HTML decimal: &#29305;</p>  <!-- Display: 特 -->

HTML Hexadecimal:

<p>HTML hex: &#x7279;</p>  <!-- Display: 特 -->

URL Encoding:

// 特 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%B9

Encodings

MD5:

24507b7ad429dd048cb3467049de1f28

SHA1:

20d7a24045bbe63835a1e9e58fd94e56c0311b61

Base64:

54m5