Unicode Finder

"浏" U+6D4F(CJK UNIFIED IDEOGRAPH-6D4F)

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

Programming

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

Web

CSS
\006D4F
HtmlDecimal
浏
HtmlHexadecimal
浏
Url
%E6%B5%8F

Code

MD5
31ac014e2082e8a1901f85ee99994788
Sha1
d3230e3173c45aea46a14f117d1edfd46adbf91f
Base64
5rWP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D4F';
console.log(char);  // Output: 浏

Java:

char c = '\u6D4F';
System.out.println(c);  // Output: 浏

JSON:

{"text": "\u6D4F"}  // Value: 浏

Python:

char = '\u6D4F'
print(char)  # Output: 浏

Perl:

my $char = "\x{6D4F}";
print $char;  # Output: 浏

PHP:

$char = "\x{6D4F}";
echo $char;  // Output: 浏

Ruby:

char = "\u{6D4F}"
puts char  # Output: 浏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27983;</p>  <!-- Display: 浏 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D4F;</p>  <!-- Display: 浏 -->

URL Encoding:

// 浏 URL encoding
https://unicodefinder.com/search.php?query=%E6%B5%8F

Encodings

MD5:

31ac014e2082e8a1901f85ee99994788

SHA1:

d3230e3173c45aea46a14f117d1edfd46adbf91f

Base64:

5rWP