Unicode Finder

"昙" U+6619(CJK UNIFIED IDEOGRAPH-6619)

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

Programming

C
\u6619
JavaScript
\u6619
Java
\u6619
Json
\u6619
Python
\u6619
Perl
\x{6619}
PHP
\x{6619}
Ruby
\u{6619}
Rust
\u{6619}
Go
\u6619

Web

CSS
\006619
HtmlDecimal
昙
HtmlHexadecimal
昙
Url
%E6%98%99

Code

MD5
30978eb7ddba19c6af0cf000e857e27d
Sha1
4dbff3194ae3c4d195d634aefe453251e6ef89eb
Base64
5piZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6619';
console.log(char);  // Output: 昙

Java:

char c = '\u6619';
System.out.println(c);  // Output: 昙

JSON:

{"text": "\u6619"}  // Value: 昙

Python:

char = '\u6619'
print(char)  # Output: 昙

Perl:

my $char = "\x{6619}";
print $char;  # Output: 昙

PHP:

$char = "\x{6619}";
echo $char;  // Output: 昙

Ruby:

char = "\u{6619}"
puts char  # Output: 昙

Rust:

let c = '\u{6619}';
println!("{}", c);  // Output: 昙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006619";  /* Display: 昙 */
}

HTML Decimal:

<p>HTML decimal: &#26137;</p>  <!-- Display: 昙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6619;</p>  <!-- Display: 昙 -->

URL Encoding:

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

Encodings

MD5:

30978eb7ddba19c6af0cf000e857e27d

SHA1:

4dbff3194ae3c4d195d634aefe453251e6ef89eb

Base64:

5piZ