Unicode Finder

"汣" U+6C63(CJK UNIFIED IDEOGRAPH-6C63)

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

Programming

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

Web

CSS
\006C63
HtmlDecimal
汣
HtmlHexadecimal
汣
Url
%E6%B1%A3

Code

MD5
570b70e5185a0ccc74b56eaf17014b62
Sha1
1d9717125cc4efe90d5c52740d6df49c832b8f48
Base64
5rGj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C63';
console.log(char);  // Output: 汣

Java:

char c = '\u6C63';
System.out.println(c);  // Output: 汣

JSON:

{"text": "\u6C63"}  // Value: 汣

Python:

char = '\u6C63'
print(char)  # Output: 汣

Perl:

my $char = "\x{6C63}";
print $char;  # Output: 汣

PHP:

$char = "\x{6C63}";
echo $char;  // Output: 汣

Ruby:

char = "\u{6C63}"
puts char  # Output: 汣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27747;</p>  <!-- Display: 汣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C63;</p>  <!-- Display: 汣 -->

URL Encoding:

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

Encodings

MD5:

570b70e5185a0ccc74b56eaf17014b62

SHA1:

1d9717125cc4efe90d5c52740d6df49c832b8f48

Base64:

5rGj