Unicode Finder

"芗" U+8297(CJK UNIFIED IDEOGRAPH-8297)

U+8297
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8297

Programming

C
\u8297
JavaScript
\u8297
Java
\u8297
Json
\u8297
Python
\u8297
Perl
\x{8297}
PHP
\x{8297}
Ruby
\u{8297}
Rust
\u{8297}
Go
\u8297

Web

CSS
\008297
HtmlDecimal
芗
HtmlHexadecimal
芗
Url
%E8%8A%97

Code

MD5
1e6d54ace5973face0480a591973bfa8
Sha1
cca1b99473d709720ff2d8cf8bbc20b2bd1331bd
Base64
6IqX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8297';
console.log(char);  // Output: 芗

Java:

char c = '\u8297';
System.out.println(c);  // Output: 芗

JSON:

{"text": "\u8297"}  // Value: 芗

Python:

char = '\u8297'
print(char)  # Output: 芗

Perl:

my $char = "\x{8297}";
print $char;  # Output: 芗

PHP:

$char = "\x{8297}";
echo $char;  // Output: 芗

Ruby:

char = "\u{8297}"
puts char  # Output: 芗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008297";  /* Display: 芗 */
}

HTML Decimal:

<p>HTML decimal: &#33431;</p>  <!-- Display: 芗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8297;</p>  <!-- Display: 芗 -->

URL Encoding:

// 芗 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%97

Encodings

MD5:

1e6d54ace5973face0480a591973bfa8

SHA1:

cca1b99473d709720ff2d8cf8bbc20b2bd1331bd

Base64:

6IqX