Unicode Finder

"薮" U+85AE(CJK UNIFIED IDEOGRAPH-85AE)

U+85AE
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-85AE

Programming

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

Web

CSS
\0085AE
HtmlDecimal
薮
HtmlHexadecimal
薮
Url
%E8%96%AE

Code

MD5
007a69befd0432ea2ea6290c95fc49fd
Sha1
bf15c52739f385d53d9b189c1af49312c9de442e
Base64
6Jau

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85AE';
console.log(char);  // Output: 薮

Java:

char c = '\u85AE';
System.out.println(c);  // Output: 薮

JSON:

{"text": "\u85AE"}  // Value: 薮

Python:

char = '\u85AE'
print(char)  # Output: 薮

Perl:

my $char = "\x{85AE}";
print $char;  # Output: 薮

PHP:

$char = "\x{85AE}";
echo $char;  // Output: 薮

Ruby:

char = "\u{85AE}"
puts char  # Output: 薮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34222;</p>  <!-- Display: 薮 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AE;</p>  <!-- Display: 薮 -->

URL Encoding:

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

Encodings

MD5:

007a69befd0432ea2ea6290c95fc49fd

SHA1:

bf15c52739f385d53d9b189c1af49312c9de442e

Base64:

6Jau