Unicode Finder

"籯" U+7C6F(CJK UNIFIED IDEOGRAPH-7C6F)

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

Programming

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

Web

CSS
\007C6F
HtmlDecimal
籯
HtmlHexadecimal
籯
Url
%E7%B1%AF

Code

MD5
3c192e915ecf1fa509fce1fbcec0a1b6
Sha1
6a0acbe6c28a18bcfead39d4f225898192e5a439
Base64
57Gv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7C6F';
console.log(char);  // Output: 籯

Java:

char c = '\u7C6F';
System.out.println(c);  // Output: 籯

JSON:

{"text": "\u7C6F"}  // Value: 籯

Python:

char = '\u7C6F'
print(char)  # Output: 籯

Perl:

my $char = "\x{7C6F}";
print $char;  # Output: 籯

PHP:

$char = "\x{7C6F}";
echo $char;  // Output: 籯

Ruby:

char = "\u{7C6F}"
puts char  # Output: 籯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31855;</p>  <!-- Display: 籯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C6F;</p>  <!-- Display: 籯 -->

URL Encoding:

// 籯 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%AF

Encodings

MD5:

3c192e915ecf1fa509fce1fbcec0a1b6

SHA1:

6a0acbe6c28a18bcfead39d4f225898192e5a439

Base64:

57Gv