Unicode Finder

"荺" U+837A(CJK UNIFIED IDEOGRAPH-837A)

U+837A
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-837A

Programming

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

Web

CSS
\00837A
HtmlDecimal
荺
HtmlHexadecimal
荺
Url
%E8%8D%BA

Code

MD5
79cfd473ec3f1d9fbc71b0673791eb5d
Sha1
52b1e20b80278e464212dc6ed5006addc1c3bdf8
Base64
6I26

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u837A';
console.log(char);  // Output: 荺

Java:

char c = '\u837A';
System.out.println(c);  // Output: 荺

JSON:

{"text": "\u837A"}  // Value: 荺

Python:

char = '\u837A'
print(char)  # Output: 荺

Perl:

my $char = "\x{837A}";
print $char;  # Output: 荺

PHP:

$char = "\x{837A}";
echo $char;  // Output: 荺

Ruby:

char = "\u{837A}"
puts char  # Output: 荺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33658;</p>  <!-- Display: 荺 -->

HTML Hexadecimal:

<p>HTML hex: &#x837A;</p>  <!-- Display: 荺 -->

URL Encoding:

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

Encodings

MD5:

79cfd473ec3f1d9fbc71b0673791eb5d

SHA1:

52b1e20b80278e464212dc6ed5006addc1c3bdf8

Base64:

6I26