Unicode Finder

"侃" U+4F83(CJK UNIFIED IDEOGRAPH-4F83)

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

Programming

C
\u4F83
JavaScript
\u4F83
Java
\u4F83
Json
\u4F83
Python
\u4F83
Perl
\x{4F83}
PHP
\x{4F83}
Ruby
\u{4F83}
Rust
\u{4F83}
Go
\u4F83

Web

CSS
\004F83
HtmlDecimal
侃
HtmlHexadecimal
侃
Url
%E4%BE%83

Code

MD5
88cfe607154b2b0242aeb1ee85e3b2e3
Sha1
3d44df734bea7d484180642f1937cdae825f046d
Base64
5L6D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F83';
console.log(char);  // Output: 侃

Java:

char c = '\u4F83';
System.out.println(c);  // Output: 侃

JSON:

{"text": "\u4F83"}  // Value: 侃

Python:

char = '\u4F83'
print(char)  # Output: 侃

Perl:

my $char = "\x{4F83}";
print $char;  # Output: 侃

PHP:

$char = "\x{4F83}";
echo $char;  // Output: 侃

Ruby:

char = "\u{4F83}"
puts char  # Output: 侃

Rust:

let c = '\u{4F83}';
println!("{}", c);  // Output: 侃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F83";  /* Display: 侃 */
}

HTML Decimal:

<p>HTML decimal: &#20355;</p>  <!-- Display: 侃 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F83;</p>  <!-- Display: 侃 -->

URL Encoding:

// 侃 URL encoding
https://unicodefinder.com/search.php?query=%E4%BE%83

Encodings

MD5:

88cfe607154b2b0242aeb1ee85e3b2e3

SHA1:

3d44df734bea7d484180642f1937cdae825f046d

Base64:

5L6D