Unicode Finder

"枉" U+6789(CJK UNIFIED IDEOGRAPH-6789)

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

Programming

C
\u6789
JavaScript
\u6789
Java
\u6789
Json
\u6789
Python
\u6789
Perl
\x{6789}
PHP
\x{6789}
Ruby
\u{6789}
Rust
\u{6789}
Go
\u6789

Web

CSS
\006789
HtmlDecimal
枉
HtmlHexadecimal
枉
Url
%E6%9E%89

Code

MD5
967f8e5b78919c1dc7bdb560c330c5d0
Sha1
73f5d059fcaab5e20f0667ec2a0186d21d46de6c
Base64
5p6J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6789';
console.log(char);  // Output: 枉

Java:

char c = '\u6789';
System.out.println(c);  // Output: 枉

JSON:

{"text": "\u6789"}  // Value: 枉

Python:

char = '\u6789'
print(char)  # Output: 枉

Perl:

my $char = "\x{6789}";
print $char;  # Output: 枉

PHP:

$char = "\x{6789}";
echo $char;  // Output: 枉

Ruby:

char = "\u{6789}"
puts char  # Output: 枉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006789";  /* Display: 枉 */
}

HTML Decimal:

<p>HTML decimal: &#26505;</p>  <!-- Display: 枉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6789;</p>  <!-- Display: 枉 -->

URL Encoding:

// 枉 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%89

Encodings

MD5:

967f8e5b78919c1dc7bdb560c330c5d0

SHA1:

73f5d059fcaab5e20f0667ec2a0186d21d46de6c

Base64:

5p6J