Unicode Finder

"歅" U+6B45(CJK UNIFIED IDEOGRAPH-6B45)

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

Programming

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

Web

CSS
\006B45
HtmlDecimal
歅
HtmlHexadecimal
歅
Url
%E6%AD%85

Code

MD5
3c7a9ec1461a15abfdc227e1a01f5d55
Sha1
a7b165d8abb1f63b9e79719c1606292c47531788
Base64
5q2F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B45';
console.log(char);  // Output: 歅

Java:

char c = '\u6B45';
System.out.println(c);  // Output: 歅

JSON:

{"text": "\u6B45"}  // Value: 歅

Python:

char = '\u6B45'
print(char)  # Output: 歅

Perl:

my $char = "\x{6B45}";
print $char;  # Output: 歅

PHP:

$char = "\x{6B45}";
echo $char;  // Output: 歅

Ruby:

char = "\u{6B45}"
puts char  # Output: 歅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27461;</p>  <!-- Display: 歅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B45;</p>  <!-- Display: 歅 -->

URL Encoding:

// 歅 URL encoding
https://unicodefinder.com/search.php?query=%E6%AD%85

Encodings

MD5:

3c7a9ec1461a15abfdc227e1a01f5d55

SHA1:

a7b165d8abb1f63b9e79719c1606292c47531788

Base64:

5q2F