Unicode Finder

"谙" U+8C19(CJK UNIFIED IDEOGRAPH-8C19)

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

Programming

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

Web

CSS
\008C19
HtmlDecimal
谙
HtmlHexadecimal
谙
Url
%E8%B0%99

Code

MD5
0868e7629c4dc0abd81496ba711af0a4
Sha1
b21aafd4875835e17175a690e868175476d6d555
Base64
6LCZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C19';
console.log(char);  // Output: 谙

Java:

char c = '\u8C19';
System.out.println(c);  // Output: 谙

JSON:

{"text": "\u8C19"}  // Value: 谙

Python:

char = '\u8C19'
print(char)  # Output: 谙

Perl:

my $char = "\x{8C19}";
print $char;  # Output: 谙

PHP:

$char = "\x{8C19}";
echo $char;  // Output: 谙

Ruby:

char = "\u{8C19}"
puts char  # Output: 谙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35865;</p>  <!-- Display: 谙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C19;</p>  <!-- Display: 谙 -->

URL Encoding:

// 谙 URL encoding
https://unicodefinder.com/search.php?query=%E8%B0%99

Encodings

MD5:

0868e7629c4dc0abd81496ba711af0a4

SHA1:

b21aafd4875835e17175a690e868175476d6d555

Base64:

6LCZ