Unicode Finder

"暂" U+6682(CJK UNIFIED IDEOGRAPH-6682)

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

Programming

C
\u6682
JavaScript
\u6682
Java
\u6682
Json
\u6682
Python
\u6682
Perl
\x{6682}
PHP
\x{6682}
Ruby
\u{6682}
Rust
\u{6682}
Go
\u6682

Web

CSS
\006682
HtmlDecimal
暂
HtmlHexadecimal
暂
Url
%E6%9A%82

Code

MD5
de7a2caa54796ea9ee76540b61518d1c
Sha1
8698c4321165f1edba2365c4f09fae783aac75eb
Base64
5pqC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6682';
console.log(char);  // Output: 暂

Java:

char c = '\u6682';
System.out.println(c);  // Output: 暂

JSON:

{"text": "\u6682"}  // Value: 暂

Python:

char = '\u6682'
print(char)  # Output: 暂

Perl:

my $char = "\x{6682}";
print $char;  # Output: 暂

PHP:

$char = "\x{6682}";
echo $char;  // Output: 暂

Ruby:

char = "\u{6682}"
puts char  # Output: 暂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006682";  /* Display: 暂 */
}

HTML Decimal:

<p>HTML decimal: &#26242;</p>  <!-- Display: 暂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6682;</p>  <!-- Display: 暂 -->

URL Encoding:

// 暂 URL encoding
https://unicodefinder.com/search.php?query=%E6%9A%82

Encodings

MD5:

de7a2caa54796ea9ee76540b61518d1c

SHA1:

8698c4321165f1edba2365c4f09fae783aac75eb

Base64:

5pqC