Unicode Finder

"薙" U+8599(CJK UNIFIED IDEOGRAPH-8599)

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

Programming

C
\u8599
JavaScript
\u8599
Java
\u8599
Json
\u8599
Python
\u8599
Perl
\x{8599}
PHP
\x{8599}
Ruby
\u{8599}
Rust
\u{8599}
Go
\u8599

Web

CSS
\008599
HtmlDecimal
薙
HtmlHexadecimal
薙
Url
%E8%96%99

Code

MD5
8822ca96df69e382d0265caf4167df22
Sha1
646036401b9f45f3267801d83dae2e1bd056b190
Base64
6JaZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8599';
console.log(char);  // Output: 薙

Java:

char c = '\u8599';
System.out.println(c);  // Output: 薙

JSON:

{"text": "\u8599"}  // Value: 薙

Python:

char = '\u8599'
print(char)  # Output: 薙

Perl:

my $char = "\x{8599}";
print $char;  # Output: 薙

PHP:

$char = "\x{8599}";
echo $char;  // Output: 薙

Ruby:

char = "\u{8599}"
puts char  # Output: 薙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008599";  /* Display: 薙 */
}

HTML Decimal:

<p>HTML decimal: &#34201;</p>  <!-- Display: 薙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8599;</p>  <!-- Display: 薙 -->

URL Encoding:

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

Encodings

MD5:

8822ca96df69e382d0265caf4167df22

SHA1:

646036401b9f45f3267801d83dae2e1bd056b190

Base64:

6JaZ