Unicode Finder

"邗" U+9097(CJK UNIFIED IDEOGRAPH-9097)

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

Programming

C
\u9097
JavaScript
\u9097
Java
\u9097
Json
\u9097
Python
\u9097
Perl
\x{9097}
PHP
\x{9097}
Ruby
\u{9097}
Rust
\u{9097}
Go
\u9097

Web

CSS
\009097
HtmlDecimal
邗
HtmlHexadecimal
邗
Url
%E9%82%97

Code

MD5
194d0394de5c5a0f0f3ba06dad768698
Sha1
77699efe7051b3510391492e48731e54c8cf4874
Base64
6YKX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9097';
console.log(char);  // Output: 邗

Java:

char c = '\u9097';
System.out.println(c);  // Output: 邗

JSON:

{"text": "\u9097"}  // Value: 邗

Python:

char = '\u9097'
print(char)  # Output: 邗

Perl:

my $char = "\x{9097}";
print $char;  # Output: 邗

PHP:

$char = "\x{9097}";
echo $char;  // Output: 邗

Ruby:

char = "\u{9097}"
puts char  # Output: 邗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009097";  /* Display: 邗 */
}

HTML Decimal:

<p>HTML decimal: &#37015;</p>  <!-- Display: 邗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9097;</p>  <!-- Display: 邗 -->

URL Encoding:

// 邗 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%97

Encodings

MD5:

194d0394de5c5a0f0f3ba06dad768698

SHA1:

77699efe7051b3510391492e48731e54c8cf4874

Base64:

6YKX