Unicode Finder

"荮" U+836E(CJK UNIFIED IDEOGRAPH-836E)

U+836E
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-836E

Programming

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

Web

CSS
\00836E
HtmlDecimal
荮
HtmlHexadecimal
荮
Url
%E8%8D%AE

Code

MD5
71e3c7f4c2c51c88a4b34a80f4ff04ca
Sha1
f1f3a6ea0151e3930d373629adf91dcd7e3064b6
Base64
6I2u

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u836E';
console.log(char);  // Output: 荮

Java:

char c = '\u836E';
System.out.println(c);  // Output: 荮

JSON:

{"text": "\u836E"}  // Value: 荮

Python:

char = '\u836E'
print(char)  # Output: 荮

Perl:

my $char = "\x{836E}";
print $char;  # Output: 荮

PHP:

$char = "\x{836E}";
echo $char;  // Output: 荮

Ruby:

char = "\u{836E}"
puts char  # Output: 荮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33646;</p>  <!-- Display: 荮 -->

HTML Hexadecimal:

<p>HTML hex: &#x836E;</p>  <!-- Display: 荮 -->

URL Encoding:

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

Encodings

MD5:

71e3c7f4c2c51c88a4b34a80f4ff04ca

SHA1:

f1f3a6ea0151e3930d373629adf91dcd7e3064b6

Base64:

6I2u