Unicode Finder

"浐" U+6D50(CJK UNIFIED IDEOGRAPH-6D50)

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

Programming

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

Web

CSS
\006D50
HtmlDecimal
浐
HtmlHexadecimal
浐
Url
%E6%B5%90

Code

MD5
20739ae54ceff25f0f79c9634feefb04
Sha1
c34a235afaaf199f8182f08d06638790d7c8bd5b
Base64
5rWQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D50';
console.log(char);  // Output: 浐

Java:

char c = '\u6D50';
System.out.println(c);  // Output: 浐

JSON:

{"text": "\u6D50"}  // Value: 浐

Python:

char = '\u6D50'
print(char)  # Output: 浐

Perl:

my $char = "\x{6D50}";
print $char;  # Output: 浐

PHP:

$char = "\x{6D50}";
echo $char;  // Output: 浐

Ruby:

char = "\u{6D50}"
puts char  # Output: 浐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27984;</p>  <!-- Display: 浐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D50;</p>  <!-- Display: 浐 -->

URL Encoding:

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

Encodings

MD5:

20739ae54ceff25f0f79c9634feefb04

SHA1:

c34a235afaaf199f8182f08d06638790d7c8bd5b

Base64:

5rWQ