Unicode Finder

"愖" U+6116(CJK UNIFIED IDEOGRAPH-6116)

U+6116
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6116

Programming

C
\u6116
JavaScript
\u6116
Java
\u6116
Json
\u6116
Python
\u6116
Perl
\x{6116}
PHP
\x{6116}
Ruby
\u{6116}
Rust
\u{6116}
Go
\u6116

Web

CSS
\006116
HtmlDecimal
愖
HtmlHexadecimal
愖
Url
%E6%84%96

Code

MD5
63b65037c223bc74994ed0ece9f75d80
Sha1
431a0d2fdf55375fe59724ec9a0ef2c0d1ce5068
Base64
5oSW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6116';
console.log(char);  // Output: 愖

Java:

char c = '\u6116';
System.out.println(c);  // Output: 愖

JSON:

{"text": "\u6116"}  // Value: 愖

Python:

char = '\u6116'
print(char)  # Output: 愖

Perl:

my $char = "\x{6116}";
print $char;  # Output: 愖

PHP:

$char = "\x{6116}";
echo $char;  // Output: 愖

Ruby:

char = "\u{6116}"
puts char  # Output: 愖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006116";  /* Display: 愖 */
}

HTML Decimal:

<p>HTML decimal: &#24854;</p>  <!-- Display: 愖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6116;</p>  <!-- Display: 愖 -->

URL Encoding:

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

Encodings

MD5:

63b65037c223bc74994ed0ece9f75d80

SHA1:

431a0d2fdf55375fe59724ec9a0ef2c0d1ce5068

Base64:

5oSW