Unicode Finder

"谆" U+8C06(CJK UNIFIED IDEOGRAPH-8C06)

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

Programming

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

Web

CSS
\008C06
HtmlDecimal
谆
HtmlHexadecimal
谆
Url
%E8%B0%86

Code

MD5
d3f16f60628288d92a275a64e54decc7
Sha1
d0388e48796c0524ea19d3c0595a057ff45ed817
Base64
6LCG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C06';
console.log(char);  // Output: 谆

Java:

char c = '\u8C06';
System.out.println(c);  // Output: 谆

JSON:

{"text": "\u8C06"}  // Value: 谆

Python:

char = '\u8C06'
print(char)  # Output: 谆

Perl:

my $char = "\x{8C06}";
print $char;  # Output: 谆

PHP:

$char = "\x{8C06}";
echo $char;  // Output: 谆

Ruby:

char = "\u{8C06}"
puts char  # Output: 谆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35846;</p>  <!-- Display: 谆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C06;</p>  <!-- Display: 谆 -->

URL Encoding:

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

Encodings

MD5:

d3f16f60628288d92a275a64e54decc7

SHA1:

d0388e48796c0524ea19d3c0595a057ff45ed817

Base64:

6LCG