Unicode Finder

"歞" U+6B5E(CJK UNIFIED IDEOGRAPH-6B5E)

U+6B5E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6B5E

Programming

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

Web

CSS
\006B5E
HtmlDecimal
歞
HtmlHexadecimal
歞
Url
%E6%AD%9E

Code

MD5
26793fa1940856ef342b265eb52c148c
Sha1
704313709361080012106a7d10e299d24cf4a7ab
Base64
5q2e

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6B5E';
console.log(char);  // Output: 歞

Java:

char c = '\u6B5E';
System.out.println(c);  // Output: 歞

JSON:

{"text": "\u6B5E"}  // Value: 歞

Python:

char = '\u6B5E'
print(char)  # Output: 歞

Perl:

my $char = "\x{6B5E}";
print $char;  # Output: 歞

PHP:

$char = "\x{6B5E}";
echo $char;  // Output: 歞

Ruby:

char = "\u{6B5E}"
puts char  # Output: 歞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27486;</p>  <!-- Display: 歞 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B5E;</p>  <!-- Display: 歞 -->

URL Encoding:

// 歞 URL encoding
https://unicodefinder.com/search.php?query=%E6%AD%9E

Encodings

MD5:

26793fa1940856ef342b265eb52c148c

SHA1:

704313709361080012106a7d10e299d24cf4a7ab

Base64:

5q2e