Unicode Finder

"涓" U+6D93(CJK UNIFIED IDEOGRAPH-6D93)

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

Programming

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

Web

CSS
\006D93
HtmlDecimal
涓
HtmlHexadecimal
涓
Url
%E6%B6%93

Code

MD5
75099a4220c4c2301a130bcad5d3f52c
Sha1
a0c0cd6b364cd7340cf228d413b1d5e701f166c7
Base64
5raT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D93';
console.log(char);  // Output: 涓

Java:

char c = '\u6D93';
System.out.println(c);  // Output: 涓

JSON:

{"text": "\u6D93"}  // Value: 涓

Python:

char = '\u6D93'
print(char)  # Output: 涓

Perl:

my $char = "\x{6D93}";
print $char;  # Output: 涓

PHP:

$char = "\x{6D93}";
echo $char;  // Output: 涓

Ruby:

char = "\u{6D93}"
puts char  # Output: 涓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28051;</p>  <!-- Display: 涓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D93;</p>  <!-- Display: 涓 -->

URL Encoding:

// 涓 URL encoding
https://unicodefinder.com/search.php?query=%E6%B6%93

Encodings

MD5:

75099a4220c4c2301a130bcad5d3f52c

SHA1:

a0c0cd6b364cd7340cf228d413b1d5e701f166c7

Base64:

5raT