Unicode Finder

"欕" U+6B15(CJK UNIFIED IDEOGRAPH-6B15)

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

Programming

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

Web

CSS
\006B15
HtmlDecimal
欕
HtmlHexadecimal
欕
Url
%E6%AC%95

Code

MD5
64db9320878d8ad6791047334026326b
Sha1
97d300974340760c962bc3bcec70c02cc8ea6261
Base64
5qyV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B15';
console.log(char);  // Output: 欕

Java:

char c = '\u6B15';
System.out.println(c);  // Output: 欕

JSON:

{"text": "\u6B15"}  // Value: 欕

Python:

char = '\u6B15'
print(char)  # Output: 欕

Perl:

my $char = "\x{6B15}";
print $char;  # Output: 欕

PHP:

$char = "\x{6B15}";
echo $char;  // Output: 欕

Ruby:

char = "\u{6B15}"
puts char  # Output: 欕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27413;</p>  <!-- Display: 欕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B15;</p>  <!-- Display: 欕 -->

URL Encoding:

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

Encodings

MD5:

64db9320878d8ad6791047334026326b

SHA1:

97d300974340760c962bc3bcec70c02cc8ea6261

Base64:

5qyV