Unicode Finder

"薫" U+85AB(CJK UNIFIED IDEOGRAPH-85AB)

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

Programming

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

Web

CSS
\0085AB
HtmlDecimal
薫
HtmlHexadecimal
薫
Url
%E8%96%AB

Code

MD5
46abed05b0f20e40caafc7422b6fa502
Sha1
dda7f1eba5d2b63e9b397e1a4568b452cffcbb6a
Base64
6Jar

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u85AB';
console.log(char);  // Output: 薫

Java:

char c = '\u85AB';
System.out.println(c);  // Output: 薫

JSON:

{"text": "\u85AB"}  // Value: 薫

Python:

char = '\u85AB'
print(char)  # Output: 薫

Perl:

my $char = "\x{85AB}";
print $char;  # Output: 薫

PHP:

$char = "\x{85AB}";
echo $char;  // Output: 薫

Ruby:

char = "\u{85AB}"
puts char  # Output: 薫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34219;</p>  <!-- Display: 薫 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AB;</p>  <!-- Display: 薫 -->

URL Encoding:

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

Encodings

MD5:

46abed05b0f20e40caafc7422b6fa502

SHA1:

dda7f1eba5d2b63e9b397e1a4568b452cffcbb6a

Base64:

6Jar