Unicode Finder

"汑" U+6C51(CJK UNIFIED IDEOGRAPH-6C51)

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

Programming

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

Web

CSS
\006C51
HtmlDecimal
汑
HtmlHexadecimal
汑
Url
%E6%B1%91

Code

MD5
4a6aebd4e2c5f5a8c77b0a8453c23575
Sha1
46323245c91f5cbc619797e9ae70a2168741a68f
Base64
5rGR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C51';
console.log(char);  // Output: 汑

Java:

char c = '\u6C51';
System.out.println(c);  // Output: 汑

JSON:

{"text": "\u6C51"}  // Value: 汑

Python:

char = '\u6C51'
print(char)  # Output: 汑

Perl:

my $char = "\x{6C51}";
print $char;  # Output: 汑

PHP:

$char = "\x{6C51}";
echo $char;  // Output: 汑

Ruby:

char = "\u{6C51}"
puts char  # Output: 汑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27729;</p>  <!-- Display: 汑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C51;</p>  <!-- Display: 汑 -->

URL Encoding:

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

Encodings

MD5:

4a6aebd4e2c5f5a8c77b0a8453c23575

SHA1:

46323245c91f5cbc619797e9ae70a2168741a68f

Base64:

5rGR