Unicode Finder

"獨" U+7368(CJK UNIFIED IDEOGRAPH-7368)

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

Programming

C
\u7368
JavaScript
\u7368
Java
\u7368
Json
\u7368
Python
\u7368
Perl
\x{7368}
PHP
\x{7368}
Ruby
\u{7368}
Rust
\u{7368}
Go
\u7368

Web

CSS
\007368
HtmlDecimal
獨
HtmlHexadecimal
獨
Url
%E7%8D%A8

Code

MD5
a3f3b78af888c3b27821d0e6adc9600f
Sha1
6f143c8fe201b3604ae85c9006998256dcb0b116
Base64
542o

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7368';
console.log(char);  // Output: 獨

Java:

char c = '\u7368';
System.out.println(c);  // Output: 獨

JSON:

{"text": "\u7368"}  // Value: 獨

Python:

char = '\u7368'
print(char)  # Output: 獨

Perl:

my $char = "\x{7368}";
print $char;  # Output: 獨

PHP:

$char = "\x{7368}";
echo $char;  // Output: 獨

Ruby:

char = "\u{7368}"
puts char  # Output: 獨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007368";  /* Display: 獨 */
}

HTML Decimal:

<p>HTML decimal: &#29544;</p>  <!-- Display: 獨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7368;</p>  <!-- Display: 獨 -->

URL Encoding:

// 獨 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%A8

Encodings

MD5:

a3f3b78af888c3b27821d0e6adc9600f

SHA1:

6f143c8fe201b3604ae85c9006998256dcb0b116

Base64:

542o