Unicode Finder

"無" U+7121(CJK UNIFIED IDEOGRAPH-7121)

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

Programming

C
\u7121
JavaScript
\u7121
Java
\u7121
Json
\u7121
Python
\u7121
Perl
\x{7121}
PHP
\x{7121}
Ruby
\u{7121}
Rust
\u{7121}
Go
\u7121

Web

CSS
\007121
HtmlDecimal
無
HtmlHexadecimal
無
Url
%E7%84%A1

Code

MD5
9e108af5d037d98320ccec0ce410a874
Sha1
9ecc4ea4aa06e7adf959f155385af23431bfcf7a
Base64
54Sh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7121';
console.log(char);  // Output: 無

Java:

char c = '\u7121';
System.out.println(c);  // Output: 無

JSON:

{"text": "\u7121"}  // Value: 無

Python:

char = '\u7121'
print(char)  # Output: 無

Perl:

my $char = "\x{7121}";
print $char;  # Output: 無

PHP:

$char = "\x{7121}";
echo $char;  // Output: 無

Ruby:

char = "\u{7121}"
puts char  # Output: 無

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007121";  /* Display: 無 */
}

HTML Decimal:

<p>HTML decimal: &#28961;</p>  <!-- Display: 無 -->

HTML Hexadecimal:

<p>HTML hex: &#x7121;</p>  <!-- Display: 無 -->

URL Encoding:

// 無 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%A1

Encodings

MD5:

9e108af5d037d98320ccec0ce410a874

SHA1:

9ecc4ea4aa06e7adf959f155385af23431bfcf7a

Base64:

54Sh