Unicode Finder

"氉" U+6C09(CJK UNIFIED IDEOGRAPH-6C09)

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

Programming

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

Web

CSS
\006C09
HtmlDecimal
氉
HtmlHexadecimal
氉
Url
%E6%B0%89

Code

MD5
6a86c2613845880dd6bd05592b7286db
Sha1
14604dc0331a39f976c672dfd74b2aafde3fe2de
Base64
5rCJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C09';
console.log(char);  // Output: 氉

Java:

char c = '\u6C09';
System.out.println(c);  // Output: 氉

JSON:

{"text": "\u6C09"}  // Value: 氉

Python:

char = '\u6C09'
print(char)  # Output: 氉

Perl:

my $char = "\x{6C09}";
print $char;  # Output: 氉

PHP:

$char = "\x{6C09}";
echo $char;  // Output: 氉

Ruby:

char = "\u{6C09}"
puts char  # Output: 氉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27657;</p>  <!-- Display: 氉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C09;</p>  <!-- Display: 氉 -->

URL Encoding:

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

Encodings

MD5:

6a86c2613845880dd6bd05592b7286db

SHA1:

14604dc0331a39f976c672dfd74b2aafde3fe2de

Base64:

5rCJ