Unicode Finder

"浔" U+6D54(CJK UNIFIED IDEOGRAPH-6D54)

U+6D54
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6D54

Programming

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

Web

CSS
\006D54
HtmlDecimal
浔
HtmlHexadecimal
浔
Url
%E6%B5%94

Code

MD5
9aea55caf139c4cd3a1112c31d27b0aa
Sha1
15f458f7ef39839f51b9656c62c05ace971b6866
Base64
5rWU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D54';
console.log(char);  // Output: 浔

Java:

char c = '\u6D54';
System.out.println(c);  // Output: 浔

JSON:

{"text": "\u6D54"}  // Value: 浔

Python:

char = '\u6D54'
print(char)  # Output: 浔

Perl:

my $char = "\x{6D54}";
print $char;  # Output: 浔

PHP:

$char = "\x{6D54}";
echo $char;  // Output: 浔

Ruby:

char = "\u{6D54}"
puts char  # Output: 浔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27988;</p>  <!-- Display: 浔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D54;</p>  <!-- Display: 浔 -->

URL Encoding:

// 浔 URL encoding
https://unicodefinder.com/search.php?query=%E6%B5%94

Encodings

MD5:

9aea55caf139c4cd3a1112c31d27b0aa

SHA1:

15f458f7ef39839f51b9656c62c05ace971b6866

Base64:

5rWU