Unicode Finder

"篍" U+7BCD(CJK UNIFIED IDEOGRAPH-7BCD)

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

Programming

C
\u7BCD
JavaScript
\u7BCD
Java
\u7BCD
Json
\u7BCD
Python
\u7BCD
Perl
\x{7BCD}
PHP
\x{7BCD}
Ruby
\u{7BCD}
Rust
\u{7BCD}
Go
\u7BCD

Web

CSS
\007BCD
HtmlDecimal
篍
HtmlHexadecimal
篍
Url
%E7%AF%8D

Code

MD5
ddd57fac319829db50ca5c648fd67c66
Sha1
1b00709a573eea1f40b35882f1d1226765f431ca
Base64
56+N

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7BCD';
console.log(char);  // Output: 篍

Java:

char c = '\u7BCD';
System.out.println(c);  // Output: 篍

JSON:

{"text": "\u7BCD"}  // Value: 篍

Python:

char = '\u7BCD'
print(char)  # Output: 篍

Perl:

my $char = "\x{7BCD}";
print $char;  # Output: 篍

PHP:

$char = "\x{7BCD}";
echo $char;  // Output: 篍

Ruby:

char = "\u{7BCD}"
puts char  # Output: 篍

Rust:

let c = '\u{7BCD}';
println!("{}", c);  // Output: 篍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007BCD";  /* Display: 篍 */
}

HTML Decimal:

<p>HTML decimal: &#31693;</p>  <!-- Display: 篍 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BCD;</p>  <!-- Display: 篍 -->

URL Encoding:

// 篍 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%8D

Encodings

MD5:

ddd57fac319829db50ca5c648fd67c66

SHA1:

1b00709a573eea1f40b35882f1d1226765f431ca

Base64:

56+N