Unicode Finder

"氙" U+6C19(CJK UNIFIED IDEOGRAPH-6C19)

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

Programming

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

Web

CSS
\006C19
HtmlDecimal
氙
HtmlHexadecimal
氙
Url
%E6%B0%99

Code

MD5
7312e054d0bbcaf768f4727de5e61e1a
Sha1
48747ffc1e0b9bcb7e8bbf78c1bd2560af01cc47
Base64
5rCZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C19';
console.log(char);  // Output: 氙

Java:

char c = '\u6C19';
System.out.println(c);  // Output: 氙

JSON:

{"text": "\u6C19"}  // Value: 氙

Python:

char = '\u6C19'
print(char)  # Output: 氙

Perl:

my $char = "\x{6C19}";
print $char;  # Output: 氙

PHP:

$char = "\x{6C19}";
echo $char;  // Output: 氙

Ruby:

char = "\u{6C19}"
puts char  # Output: 氙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27673;</p>  <!-- Display: 氙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C19;</p>  <!-- Display: 氙 -->

URL Encoding:

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

Encodings

MD5:

7312e054d0bbcaf768f4727de5e61e1a

SHA1:

48747ffc1e0b9bcb7e8bbf78c1bd2560af01cc47

Base64:

5rCZ