Unicode Finder

"残" U+6B8B(CJK UNIFIED IDEOGRAPH-6B8B)

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

Programming

C
\u6B8B
JavaScript
\u6B8B
Java
\u6B8B
Json
\u6B8B
Python
\u6B8B
Perl
\x{6B8B}
PHP
\x{6B8B}
Ruby
\u{6B8B}
Rust
\u{6B8B}
Go
\u6B8B

Web

CSS
\006B8B
HtmlDecimal
残
HtmlHexadecimal
残
Url
%E6%AE%8B

Code

MD5
d5aaf5f437ff7b276ca78779bdddfa0e
Sha1
b6b64a431723c596240b811a0ce03e6e016120e2
Base64
5q6L

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B8B';
console.log(char);  // Output: 残

Java:

char c = '\u6B8B';
System.out.println(c);  // Output: 残

JSON:

{"text": "\u6B8B"}  // Value: 残

Python:

char = '\u6B8B'
print(char)  # Output: 残

Perl:

my $char = "\x{6B8B}";
print $char;  # Output: 残

PHP:

$char = "\x{6B8B}";
echo $char;  // Output: 残

Ruby:

char = "\u{6B8B}"
puts char  # Output: 残

Rust:

let c = '\u{6B8B}';
println!("{}", c);  // Output: 残

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006B8B";  /* Display: 残 */
}

HTML Decimal:

<p>HTML decimal: &#27531;</p>  <!-- Display: 残 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B8B;</p>  <!-- Display: 残 -->

URL Encoding:

// 残 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%8B

Encodings

MD5:

d5aaf5f437ff7b276ca78779bdddfa0e

SHA1:

b6b64a431723c596240b811a0ce03e6e016120e2

Base64:

5q6L