Unicode Finder

"洟" U+6D1F(CJK UNIFIED IDEOGRAPH-6D1F)

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

Programming

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

Web

CSS
\006D1F
HtmlDecimal
洟
HtmlHexadecimal
洟
Url
%E6%B4%9F

Code

MD5
faa0fa4386502146267c60f3d7470d1c
Sha1
048664ef89d4570257b744b026c3cdc8e6ab7917
Base64
5rSf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D1F';
console.log(char);  // Output: 洟

Java:

char c = '\u6D1F';
System.out.println(c);  // Output: 洟

JSON:

{"text": "\u6D1F"}  // Value: 洟

Python:

char = '\u6D1F'
print(char)  # Output: 洟

Perl:

my $char = "\x{6D1F}";
print $char;  # Output: 洟

PHP:

$char = "\x{6D1F}";
echo $char;  // Output: 洟

Ruby:

char = "\u{6D1F}"
puts char  # Output: 洟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27935;</p>  <!-- Display: 洟 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D1F;</p>  <!-- Display: 洟 -->

URL Encoding:

// 洟 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%9F

Encodings

MD5:

faa0fa4386502146267c60f3d7470d1c

SHA1:

048664ef89d4570257b744b026c3cdc8e6ab7917

Base64:

5rSf