Unicode Finder

"洍" U+6D0D(CJK UNIFIED IDEOGRAPH-6D0D)

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

Programming

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

Web

CSS
\006D0D
HtmlDecimal
洍
HtmlHexadecimal
洍
Url
%E6%B4%8D

Code

MD5
458269a40966f7421a1eb6e50ca9842b
Sha1
b44e22d02ae24f8d5955a2658e40aa79869c9245
Base64
5rSN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D0D';
console.log(char);  // Output: 洍

Java:

char c = '\u6D0D';
System.out.println(c);  // Output: 洍

JSON:

{"text": "\u6D0D"}  // Value: 洍

Python:

char = '\u6D0D'
print(char)  # Output: 洍

Perl:

my $char = "\x{6D0D}";
print $char;  # Output: 洍

PHP:

$char = "\x{6D0D}";
echo $char;  // Output: 洍

Ruby:

char = "\u{6D0D}"
puts char  # Output: 洍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27917;</p>  <!-- Display: 洍 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D0D;</p>  <!-- Display: 洍 -->

URL Encoding:

// 洍 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%8D

Encodings

MD5:

458269a40966f7421a1eb6e50ca9842b

SHA1:

b44e22d02ae24f8d5955a2658e40aa79869c9245

Base64:

5rSN