Unicode Finder

"螛" U+879B(CJK UNIFIED IDEOGRAPH-879B)

U+879B
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-879B

Programming

C
\u879B
JavaScript
\u879B
Java
\u879B
Json
\u879B
Python
\u879B
Perl
\x{879B}
PHP
\x{879B}
Ruby
\u{879B}
Rust
\u{879B}
Go
\u879B

Web

CSS
\00879B
HtmlDecimal
螛
HtmlHexadecimal
螛
Url
%E8%9E%9B

Code

MD5
a07e9446f21862a2cce20272f36e3352
Sha1
f1b7489ee7d15af658d696daf50599fcd4b17e32
Base64
6J6b

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u879B';
console.log(char);  // Output: 螛

Java:

char c = '\u879B';
System.out.println(c);  // Output: 螛

JSON:

{"text": "\u879B"}  // Value: 螛

Python:

char = '\u879B'
print(char)  # Output: 螛

Perl:

my $char = "\x{879B}";
print $char;  # Output: 螛

PHP:

$char = "\x{879B}";
echo $char;  // Output: 螛

Ruby:

char = "\u{879B}"
puts char  # Output: 螛

Rust:

let c = '\u{879B}';
println!("{}", c);  // Output: 螛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00879B";  /* Display: 螛 */
}

HTML Decimal:

<p>HTML decimal: &#34715;</p>  <!-- Display: 螛 -->

HTML Hexadecimal:

<p>HTML hex: &#x879B;</p>  <!-- Display: 螛 -->

URL Encoding:

// 螛 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%9B

Encodings

MD5:

a07e9446f21862a2cce20272f36e3352

SHA1:

f1b7489ee7d15af658d696daf50599fcd4b17e32

Base64:

6J6b