Unicode Finder

"芬" U+82AC(CJK UNIFIED IDEOGRAPH-82AC)

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

Programming

C
\u82AC
JavaScript
\u82AC
Java
\u82AC
Json
\u82AC
Python
\u82AC
Perl
\x{82AC}
PHP
\x{82AC}
Ruby
\u{82AC}
Rust
\u{82AC}
Go
\u82AC

Web

CSS
\0082AC
HtmlDecimal
芬
HtmlHexadecimal
芬
Url
%E8%8A%AC

Code

MD5
ac098486fe99caed027d8fcf4385e62d
Sha1
7068735a4dcda1a6d6238b154d56397e57f4c67e
Base64
6Iqs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82AC';
console.log(char);  // Output: 芬

Java:

char c = '\u82AC';
System.out.println(c);  // Output: 芬

JSON:

{"text": "\u82AC"}  // Value: 芬

Python:

char = '\u82AC'
print(char)  # Output: 芬

Perl:

my $char = "\x{82AC}";
print $char;  # Output: 芬

PHP:

$char = "\x{82AC}";
echo $char;  // Output: 芬

Ruby:

char = "\u{82AC}"
puts char  # Output: 芬

Rust:

let c = '\u{82AC}';
println!("{}", c);  // Output: 芬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082AC";  /* Display: 芬 */
}

HTML Decimal:

<p>HTML decimal: &#33452;</p>  <!-- Display: 芬 -->

HTML Hexadecimal:

<p>HTML hex: &#x82AC;</p>  <!-- Display: 芬 -->

URL Encoding:

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

Encodings

MD5:

ac098486fe99caed027d8fcf4385e62d

SHA1:

7068735a4dcda1a6d6238b154d56397e57f4c67e

Base64:

6Iqs