Unicode Finder

"愩" U+6129(CJK UNIFIED IDEOGRAPH-6129)

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

Programming

C
\u6129
JavaScript
\u6129
Java
\u6129
Json
\u6129
Python
\u6129
Perl
\x{6129}
PHP
\x{6129}
Ruby
\u{6129}
Rust
\u{6129}
Go
\u6129

Web

CSS
\006129
HtmlDecimal
愩
HtmlHexadecimal
愩
Url
%E6%84%A9

Code

MD5
221c507ac74435ed3e88bb0dea14ba43
Sha1
11a388010d2ad9463d57d1b82dbc60273638ebb2
Base64
5oSp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6129';
console.log(char);  // Output: 愩

Java:

char c = '\u6129';
System.out.println(c);  // Output: 愩

JSON:

{"text": "\u6129"}  // Value: 愩

Python:

char = '\u6129'
print(char)  # Output: 愩

Perl:

my $char = "\x{6129}";
print $char;  # Output: 愩

PHP:

$char = "\x{6129}";
echo $char;  // Output: 愩

Ruby:

char = "\u{6129}"
puts char  # Output: 愩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006129";  /* Display: 愩 */
}

HTML Decimal:

<p>HTML decimal: &#24873;</p>  <!-- Display: 愩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6129;</p>  <!-- Display: 愩 -->

URL Encoding:

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

Encodings

MD5:

221c507ac74435ed3e88bb0dea14ba43

SHA1:

11a388010d2ad9463d57d1b82dbc60273638ebb2

Base64:

5oSp