Unicode Finder

"荪" U+836A(CJK UNIFIED IDEOGRAPH-836A)

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

Programming

C
\u836A
JavaScript
\u836A
Java
\u836A
Json
\u836A
Python
\u836A
Perl
\x{836A}
PHP
\x{836A}
Ruby
\u{836A}
Rust
\u{836A}
Go
\u836A

Web

CSS
\00836A
HtmlDecimal
荪
HtmlHexadecimal
荪
Url
%E8%8D%AA

Code

MD5
970cf2fd51282a22adef3fdb60bccfa8
Sha1
05dac41e79830ab6818a0cbd351b830a200f92e5
Base64
6I2q

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u836A';
console.log(char);  // Output: 荪

Java:

char c = '\u836A';
System.out.println(c);  // Output: 荪

JSON:

{"text": "\u836A"}  // Value: 荪

Python:

char = '\u836A'
print(char)  # Output: 荪

Perl:

my $char = "\x{836A}";
print $char;  # Output: 荪

PHP:

$char = "\x{836A}";
echo $char;  // Output: 荪

Ruby:

char = "\u{836A}"
puts char  # Output: 荪

Rust:

let c = '\u{836A}';
println!("{}", c);  // Output: 荪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00836A";  /* Display: 荪 */
}

HTML Decimal:

<p>HTML decimal: &#33642;</p>  <!-- Display: 荪 -->

HTML Hexadecimal:

<p>HTML hex: &#x836A;</p>  <!-- Display: 荪 -->

URL Encoding:

// 荪 URL encoding
https://unicodefinder.com/search.php?query=%E8%8D%AA

Encodings

MD5:

970cf2fd51282a22adef3fdb60bccfa8

SHA1:

05dac41e79830ab6818a0cbd351b830a200f92e5

Base64:

6I2q