Unicode Finder

"洙" U+6D19(CJK UNIFIED IDEOGRAPH-6D19)

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

Programming

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

Web

CSS
\006D19
HtmlDecimal
洙
HtmlHexadecimal
洙
Url
%E6%B4%99

Code

MD5
c4541a1a9834656edc8f743fe78ecf86
Sha1
e76737ec91ee57a35bdae3212269df9715a5e744
Base64
5rSZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D19';
console.log(char);  // Output: 洙

Java:

char c = '\u6D19';
System.out.println(c);  // Output: 洙

JSON:

{"text": "\u6D19"}  // Value: 洙

Python:

char = '\u6D19'
print(char)  # Output: 洙

Perl:

my $char = "\x{6D19}";
print $char;  # Output: 洙

PHP:

$char = "\x{6D19}";
echo $char;  // Output: 洙

Ruby:

char = "\u{6D19}"
puts char  # Output: 洙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27929;</p>  <!-- Display: 洙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D19;</p>  <!-- Display: 洙 -->

URL Encoding:

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

Encodings

MD5:

c4541a1a9834656edc8f743fe78ecf86

SHA1:

e76737ec91ee57a35bdae3212269df9715a5e744

Base64:

5rSZ