Unicode Finder

"碓" U+7893(CJK UNIFIED IDEOGRAPH-7893)

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

Programming

C
\u7893
JavaScript
\u7893
Java
\u7893
Json
\u7893
Python
\u7893
Perl
\x{7893}
PHP
\x{7893}
Ruby
\u{7893}
Rust
\u{7893}
Go
\u7893

Web

CSS
\007893
HtmlDecimal
碓
HtmlHexadecimal
碓
Url
%E7%A2%93

Code

MD5
dbf05b54d0b04d4fca09382a5bb1711e
Sha1
575efb7de0e3367428a3abeb55c3a6296df71487
Base64
56KT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7893';
console.log(char);  // Output: 碓

Java:

char c = '\u7893';
System.out.println(c);  // Output: 碓

JSON:

{"text": "\u7893"}  // Value: 碓

Python:

char = '\u7893'
print(char)  # Output: 碓

Perl:

my $char = "\x{7893}";
print $char;  # Output: 碓

PHP:

$char = "\x{7893}";
echo $char;  // Output: 碓

Ruby:

char = "\u{7893}"
puts char  # Output: 碓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007893";  /* Display: 碓 */
}

HTML Decimal:

<p>HTML decimal: &#30867;</p>  <!-- Display: 碓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7893;</p>  <!-- Display: 碓 -->

URL Encoding:

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

Encodings

MD5:

dbf05b54d0b04d4fca09382a5bb1711e

SHA1:

575efb7de0e3367428a3abeb55c3a6296df71487

Base64:

56KT