Unicode Finder

"椬" U+692C(CJK UNIFIED IDEOGRAPH-692C)

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

Programming

C
\u692C
JavaScript
\u692C
Java
\u692C
Json
\u692C
Python
\u692C
Perl
\x{692C}
PHP
\x{692C}
Ruby
\u{692C}
Rust
\u{692C}
Go
\u692C

Web

CSS
\00692C
HtmlDecimal
椬
HtmlHexadecimal
椬
Url
%E6%A4%AC

Code

MD5
d8e95a0a21d94db7b44c4deb680fa330
Sha1
bb56e0d4302b66b12619996dda168df25c37d211
Base64
5qSs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u692C';
console.log(char);  // Output: 椬

Java:

char c = '\u692C';
System.out.println(c);  // Output: 椬

JSON:

{"text": "\u692C"}  // Value: 椬

Python:

char = '\u692C'
print(char)  # Output: 椬

Perl:

my $char = "\x{692C}";
print $char;  # Output: 椬

PHP:

$char = "\x{692C}";
echo $char;  // Output: 椬

Ruby:

char = "\u{692C}"
puts char  # Output: 椬

Rust:

let c = '\u{692C}';
println!("{}", c);  // Output: 椬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00692C";  /* Display: 椬 */
}

HTML Decimal:

<p>HTML decimal: &#26924;</p>  <!-- Display: 椬 -->

HTML Hexadecimal:

<p>HTML hex: &#x692C;</p>  <!-- Display: 椬 -->

URL Encoding:

// 椬 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%AC

Encodings

MD5:

d8e95a0a21d94db7b44c4deb680fa330

SHA1:

bb56e0d4302b66b12619996dda168df25c37d211

Base64:

5qSs