Unicode Finder

"碔" U+7894(CJK UNIFIED IDEOGRAPH-7894)

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

Programming

C
\u7894
JavaScript
\u7894
Java
\u7894
Json
\u7894
Python
\u7894
Perl
\x{7894}
PHP
\x{7894}
Ruby
\u{7894}
Rust
\u{7894}
Go
\u7894

Web

CSS
\007894
HtmlDecimal
碔
HtmlHexadecimal
碔
Url
%E7%A2%94

Code

MD5
33f7009537d86fd183792db6c31c1dbb
Sha1
3adb75bfa0153cc3daa8efc12cec73ff31b8f908
Base64
56KU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7894';
console.log(char);  // Output: 碔

Java:

char c = '\u7894';
System.out.println(c);  // Output: 碔

JSON:

{"text": "\u7894"}  // Value: 碔

Python:

char = '\u7894'
print(char)  # Output: 碔

Perl:

my $char = "\x{7894}";
print $char;  # Output: 碔

PHP:

$char = "\x{7894}";
echo $char;  // Output: 碔

Ruby:

char = "\u{7894}"
puts char  # Output: 碔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007894";  /* Display: 碔 */
}

HTML Decimal:

<p>HTML decimal: &#30868;</p>  <!-- Display: 碔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7894;</p>  <!-- Display: 碔 -->

URL Encoding:

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

Encodings

MD5:

33f7009537d86fd183792db6c31c1dbb

SHA1:

3adb75bfa0153cc3daa8efc12cec73ff31b8f908

Base64:

56KU