Unicode Finder

"薬" U+85AC(CJK UNIFIED IDEOGRAPH-85AC)

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

Programming

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

Web

CSS
\0085AC
HtmlDecimal
薬
HtmlHexadecimal
薬
Url
%E8%96%AC

Code

MD5
b0af76f501812f34b55ab0f8846ed7a1
Sha1
c98fb0141cc43e0f795de87722038177b70e84bd
Base64
6Jas

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u85AC';
console.log(char);  // Output: 薬

Java:

char c = '\u85AC';
System.out.println(c);  // Output: 薬

JSON:

{"text": "\u85AC"}  // Value: 薬

Python:

char = '\u85AC'
print(char)  # Output: 薬

Perl:

my $char = "\x{85AC}";
print $char;  # Output: 薬

PHP:

$char = "\x{85AC}";
echo $char;  // Output: 薬

Ruby:

char = "\u{85AC}"
puts char  # Output: 薬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34220;</p>  <!-- Display: 薬 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AC;</p>  <!-- Display: 薬 -->

URL Encoding:

// 薬 URL encoding
https://unicodefinder.com/search.php?query=%E8%96%AC

Encodings

MD5:

b0af76f501812f34b55ab0f8846ed7a1

SHA1:

c98fb0141cc43e0f795de87722038177b70e84bd

Base64:

6Jas