Unicode Finder

"氆" U+6C06(CJK UNIFIED IDEOGRAPH-6C06)

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

Programming

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

Web

CSS
\006C06
HtmlDecimal
氆
HtmlHexadecimal
氆
Url
%E6%B0%86

Code

MD5
81214fb37713a9ea9fa0a67653a896ed
Sha1
8b853ef367c52af002b055f514cb69a7af928c9d
Base64
5rCG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C06';
console.log(char);  // Output: 氆

Java:

char c = '\u6C06';
System.out.println(c);  // Output: 氆

JSON:

{"text": "\u6C06"}  // Value: 氆

Python:

char = '\u6C06'
print(char)  # Output: 氆

Perl:

my $char = "\x{6C06}";
print $char;  # Output: 氆

PHP:

$char = "\x{6C06}";
echo $char;  // Output: 氆

Ruby:

char = "\u{6C06}"
puts char  # Output: 氆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27654;</p>  <!-- Display: 氆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C06;</p>  <!-- Display: 氆 -->

URL Encoding:

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

Encodings

MD5:

81214fb37713a9ea9fa0a67653a896ed

SHA1:

8b853ef367c52af002b055f514cb69a7af928c9d

Base64:

5rCG