Unicode Finder

"薒" U+8592(CJK UNIFIED IDEOGRAPH-8592)

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

Programming

C
\u8592
JavaScript
\u8592
Java
\u8592
Json
\u8592
Python
\u8592
Perl
\x{8592}
PHP
\x{8592}
Ruby
\u{8592}
Rust
\u{8592}
Go
\u8592

Web

CSS
\008592
HtmlDecimal
薒
HtmlHexadecimal
薒
Url
%E8%96%92

Code

MD5
2b3ccded8fe095c4c5670516085e79ad
Sha1
18121209770b699e8c63f50d12d07a2eeb016c06
Base64
6JaS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8592';
console.log(char);  // Output: 薒

Java:

char c = '\u8592';
System.out.println(c);  // Output: 薒

JSON:

{"text": "\u8592"}  // Value: 薒

Python:

char = '\u8592'
print(char)  # Output: 薒

Perl:

my $char = "\x{8592}";
print $char;  # Output: 薒

PHP:

$char = "\x{8592}";
echo $char;  // Output: 薒

Ruby:

char = "\u{8592}"
puts char  # Output: 薒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008592";  /* Display: 薒 */
}

HTML Decimal:

<p>HTML decimal: &#34194;</p>  <!-- Display: 薒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8592;</p>  <!-- Display: 薒 -->

URL Encoding:

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

Encodings

MD5:

2b3ccded8fe095c4c5670516085e79ad

SHA1:

18121209770b699e8c63f50d12d07a2eeb016c06

Base64:

6JaS