Unicode Finder

"碉" U+7889(CJK UNIFIED IDEOGRAPH-7889)

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

Programming

C
\u7889
JavaScript
\u7889
Java
\u7889
Json
\u7889
Python
\u7889
Perl
\x{7889}
PHP
\x{7889}
Ruby
\u{7889}
Rust
\u{7889}
Go
\u7889

Web

CSS
\007889
HtmlDecimal
碉
HtmlHexadecimal
碉
Url
%E7%A2%89

Code

MD5
3c54d30b54716a9a7eeaa16901cfdbae
Sha1
62d62bfe7e9e02eaf6fbcff5017768eed209151c
Base64
56KJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7889';
console.log(char);  // Output: 碉

Java:

char c = '\u7889';
System.out.println(c);  // Output: 碉

JSON:

{"text": "\u7889"}  // Value: 碉

Python:

char = '\u7889'
print(char)  # Output: 碉

Perl:

my $char = "\x{7889}";
print $char;  # Output: 碉

PHP:

$char = "\x{7889}";
echo $char;  // Output: 碉

Ruby:

char = "\u{7889}"
puts char  # Output: 碉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007889";  /* Display: 碉 */
}

HTML Decimal:

<p>HTML decimal: &#30857;</p>  <!-- Display: 碉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7889;</p>  <!-- Display: 碉 -->

URL Encoding:

// 碉 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%89

Encodings

MD5:

3c54d30b54716a9a7eeaa16901cfdbae

SHA1:

62d62bfe7e9e02eaf6fbcff5017768eed209151c

Base64:

56KJ