Unicode Finder

"氱" U+6C31(CJK UNIFIED IDEOGRAPH-6C31)

U+6C31
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6C31

Programming

C
\u6C31
JavaScript
\u6C31
Java
\u6C31
Json
\u6C31
Python
\u6C31
Perl
\x{6C31}
PHP
\x{6C31}
Ruby
\u{6C31}
Rust
\u{6C31}
Go
\u6C31

Web

CSS
\006C31
HtmlDecimal
氱
HtmlHexadecimal
氱
Url
%E6%B0%B1

Code

MD5
43bb5c6c21fc385f1dd202fbf261bae5
Sha1
395fc9b03ecb905ffe80bc755ecccf5c33221153
Base64
5rCx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C31';
console.log(char);  // Output: 氱

Java:

char c = '\u6C31';
System.out.println(c);  // Output: 氱

JSON:

{"text": "\u6C31"}  // Value: 氱

Python:

char = '\u6C31'
print(char)  # Output: 氱

Perl:

my $char = "\x{6C31}";
print $char;  # Output: 氱

PHP:

$char = "\x{6C31}";
echo $char;  // Output: 氱

Ruby:

char = "\u{6C31}"
puts char  # Output: 氱

Rust:

let c = '\u{6C31}';
println!("{}", c);  // Output: 氱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006C31";  /* Display: 氱 */
}

HTML Decimal:

<p>HTML decimal: &#27697;</p>  <!-- Display: 氱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C31;</p>  <!-- Display: 氱 -->

URL Encoding:

// 氱 URL encoding
https://unicodefinder.com/search.php?query=%E6%B0%B1

Encodings

MD5:

43bb5c6c21fc385f1dd202fbf261bae5

SHA1:

395fc9b03ecb905ffe80bc755ecccf5c33221153

Base64:

5rCx