Unicode Finder

"愆" U+6106(CJK UNIFIED IDEOGRAPH-6106)

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

Programming

C
\u6106
JavaScript
\u6106
Java
\u6106
Json
\u6106
Python
\u6106
Perl
\x{6106}
PHP
\x{6106}
Ruby
\u{6106}
Rust
\u{6106}
Go
\u6106

Web

CSS
\006106
HtmlDecimal
愆
HtmlHexadecimal
愆
Url
%E6%84%86

Code

MD5
a2c67aa93126a1c5c13dff8934a0992d
Sha1
c7de0ec48dee5df80ba338e9ad36edaa4a350e4e
Base64
5oSG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6106';
console.log(char);  // Output: 愆

Java:

char c = '\u6106';
System.out.println(c);  // Output: 愆

JSON:

{"text": "\u6106"}  // Value: 愆

Python:

char = '\u6106'
print(char)  # Output: 愆

Perl:

my $char = "\x{6106}";
print $char;  # Output: 愆

PHP:

$char = "\x{6106}";
echo $char;  // Output: 愆

Ruby:

char = "\u{6106}"
puts char  # Output: 愆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006106";  /* Display: 愆 */
}

HTML Decimal:

<p>HTML decimal: &#24838;</p>  <!-- Display: 愆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6106;</p>  <!-- Display: 愆 -->

URL Encoding:

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

Encodings

MD5:

a2c67aa93126a1c5c13dff8934a0992d

SHA1:

c7de0ec48dee5df80ba338e9ad36edaa4a350e4e

Base64:

5oSG