Unicode Finder

"鞛" U+979B(CJK UNIFIED IDEOGRAPH-979B)

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

Programming

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

Web

CSS
\00979B
HtmlDecimal
鞛
HtmlHexadecimal
鞛
Url
%E9%9E%9B

Code

MD5
9a91ad334898f3221e8744e67b11c0fe
Sha1
2065215793e491908140466b995299108d6589ab
Base64
6Z6b

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u979B';
console.log(char);  // Output: 鞛

Java:

char c = '\u979B';
System.out.println(c);  // Output: 鞛

JSON:

{"text": "\u979B"}  // Value: 鞛

Python:

char = '\u979B'
print(char)  # Output: 鞛

Perl:

my $char = "\x{979B}";
print $char;  # Output: 鞛

PHP:

$char = "\x{979B}";
echo $char;  // Output: 鞛

Ruby:

char = "\u{979B}"
puts char  # Output: 鞛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38811;</p>  <!-- Display: 鞛 -->

HTML Hexadecimal:

<p>HTML hex: &#x979B;</p>  <!-- Display: 鞛 -->

URL Encoding:

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

Encodings

MD5:

9a91ad334898f3221e8744e67b11c0fe

SHA1:

2065215793e491908140466b995299108d6589ab

Base64:

6Z6b