Unicode Finder

"谟" U+8C1F(CJK UNIFIED IDEOGRAPH-8C1F)

U+8C1F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8C1F

Programming

C
\u8C1F
JavaScript
\u8C1F
Java
\u8C1F
Json
\u8C1F
Python
\u8C1F
Perl
\x{8C1F}
PHP
\x{8C1F}
Ruby
\u{8C1F}
Rust
\u{8C1F}
Go
\u8C1F

Web

CSS
\008C1F
HtmlDecimal
谟
HtmlHexadecimal
谟
Url
%E8%B0%9F

Code

MD5
559e2a12e312697f72036e931a366e0f
Sha1
1877f9c391d7ab6d8532700917a046a0aeb72a68
Base64
6LCf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C1F';
console.log(char);  // Output: 谟

Java:

char c = '\u8C1F';
System.out.println(c);  // Output: 谟

JSON:

{"text": "\u8C1F"}  // Value: 谟

Python:

char = '\u8C1F'
print(char)  # Output: 谟

Perl:

my $char = "\x{8C1F}";
print $char;  # Output: 谟

PHP:

$char = "\x{8C1F}";
echo $char;  // Output: 谟

Ruby:

char = "\u{8C1F}"
puts char  # Output: 谟

Rust:

let c = '\u{8C1F}';
println!("{}", c);  // Output: 谟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008C1F";  /* Display: 谟 */
}

HTML Decimal:

<p>HTML decimal: &#35871;</p>  <!-- Display: 谟 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C1F;</p>  <!-- Display: 谟 -->

URL Encoding:

// 谟 URL encoding
https://unicodefinder.com/search.php?query=%E8%B0%9F

Encodings

MD5:

559e2a12e312697f72036e931a366e0f

SHA1:

1877f9c391d7ab6d8532700917a046a0aeb72a68

Base64:

6LCf