Unicode Finder

"談" U+8AC7(CJK UNIFIED IDEOGRAPH-8AC7)

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

Programming

C
\u8AC7
JavaScript
\u8AC7
Java
\u8AC7
Json
\u8AC7
Python
\u8AC7
Perl
\x{8AC7}
PHP
\x{8AC7}
Ruby
\u{8AC7}
Rust
\u{8AC7}
Go
\u8AC7

Web

CSS
\008AC7
HtmlDecimal
談
HtmlHexadecimal
談
Url
%E8%AB%87

Code

MD5
fa3344bed47e406488833fcdc2278c86
Sha1
575eb99d0248952806b2ef8d1f370fe495225dfc
Base64
6KuH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8AC7';
console.log(char);  // Output: 談

Java:

char c = '\u8AC7';
System.out.println(c);  // Output: 談

JSON:

{"text": "\u8AC7"}  // Value: 談

Python:

char = '\u8AC7'
print(char)  # Output: 談

Perl:

my $char = "\x{8AC7}";
print $char;  # Output: 談

PHP:

$char = "\x{8AC7}";
echo $char;  // Output: 談

Ruby:

char = "\u{8AC7}"
puts char  # Output: 談

Rust:

let c = '\u{8AC7}';
println!("{}", c);  // Output: 談

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008AC7";  /* Display: 談 */
}

HTML Decimal:

<p>HTML decimal: &#35527;</p>  <!-- Display: 談 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AC7;</p>  <!-- Display: 談 -->

URL Encoding:

// 談 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%87

Encodings

MD5:

fa3344bed47e406488833fcdc2278c86

SHA1:

575eb99d0248952806b2ef8d1f370fe495225dfc

Base64:

6KuH