Unicode Finder

"機" U+6A5F(CJK UNIFIED IDEOGRAPH-6A5F)

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

Programming

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

Web

CSS
\006A5F
HtmlDecimal
機
HtmlHexadecimal
機
Url
%E6%A9%9F

Code

MD5
5ac4e8d44ba7372021e4f8f76df8d4dc
Sha1
2714e3424639fc07f6973c844fa9333732010737
Base64
5qmf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6A5F';
console.log(char);  // Output: 機

Java:

char c = '\u6A5F';
System.out.println(c);  // Output: 機

JSON:

{"text": "\u6A5F"}  // Value: 機

Python:

char = '\u6A5F'
print(char)  # Output: 機

Perl:

my $char = "\x{6A5F}";
print $char;  # Output: 機

PHP:

$char = "\x{6A5F}";
echo $char;  // Output: 機

Ruby:

char = "\u{6A5F}"
puts char  # Output: 機

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27231;</p>  <!-- Display: 機 -->

HTML Hexadecimal:

<p>HTML hex: &#x6A5F;</p>  <!-- Display: 機 -->

URL Encoding:

// 機 URL encoding
https://unicodefinder.com/search.php?query=%E6%A9%9F

Encodings

MD5:

5ac4e8d44ba7372021e4f8f76df8d4dc

SHA1:

2714e3424639fc07f6973c844fa9333732010737

Base64:

5qmf