Unicode Finder

"洭" U+6D2D(CJK UNIFIED IDEOGRAPH-6D2D)

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

Programming

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

Web

CSS
\006D2D
HtmlDecimal
洭
HtmlHexadecimal
洭
Url
%E6%B4%AD

Code

MD5
1499cb16353eb7e8df5254685e49dc18
Sha1
e9e2b8af8c2efec99353e74c8a9174edf6e26f33
Base64
5rSt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D2D';
console.log(char);  // Output: 洭

Java:

char c = '\u6D2D';
System.out.println(c);  // Output: 洭

JSON:

{"text": "\u6D2D"}  // Value: 洭

Python:

char = '\u6D2D'
print(char)  # Output: 洭

Perl:

my $char = "\x{6D2D}";
print $char;  # Output: 洭

PHP:

$char = "\x{6D2D}";
echo $char;  // Output: 洭

Ruby:

char = "\u{6D2D}"
puts char  # Output: 洭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27949;</p>  <!-- Display: 洭 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D2D;</p>  <!-- Display: 洭 -->

URL Encoding:

// 洭 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%AD

Encodings

MD5:

1499cb16353eb7e8df5254685e49dc18

SHA1:

e9e2b8af8c2efec99353e74c8a9174edf6e26f33

Base64:

5rSt