Unicode Finder

"愳" U+6133(CJK UNIFIED IDEOGRAPH-6133)

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

Programming

C
\u6133
JavaScript
\u6133
Java
\u6133
Json
\u6133
Python
\u6133
Perl
\x{6133}
PHP
\x{6133}
Ruby
\u{6133}
Rust
\u{6133}
Go
\u6133

Web

CSS
\006133
HtmlDecimal
愳
HtmlHexadecimal
愳
Url
%E6%84%B3

Code

MD5
32264c184467862f697ca88d1c2e3cac
Sha1
8c0660663b39ce724deaf29fc4185e007e40d7b6
Base64
5oSz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6133';
console.log(char);  // Output: 愳

Java:

char c = '\u6133';
System.out.println(c);  // Output: 愳

JSON:

{"text": "\u6133"}  // Value: 愳

Python:

char = '\u6133'
print(char)  # Output: 愳

Perl:

my $char = "\x{6133}";
print $char;  # Output: 愳

PHP:

$char = "\x{6133}";
echo $char;  // Output: 愳

Ruby:

char = "\u{6133}"
puts char  # Output: 愳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006133";  /* Display: 愳 */
}

HTML Decimal:

<p>HTML decimal: &#24883;</p>  <!-- Display: 愳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6133;</p>  <!-- Display: 愳 -->

URL Encoding:

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

Encodings

MD5:

32264c184467862f697ca88d1c2e3cac

SHA1:

8c0660663b39ce724deaf29fc4185e007e40d7b6

Base64:

5oSz