Unicode Finder

"戯" U+622F(CJK UNIFIED IDEOGRAPH-622F)

U+622F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-622F

Programming

C
\u622F
JavaScript
\u622F
Java
\u622F
Json
\u622F
Python
\u622F
Perl
\x{622F}
PHP
\x{622F}
Ruby
\u{622F}
Rust
\u{622F}
Go
\u622F

Web

CSS
\00622F
HtmlDecimal
戯
HtmlHexadecimal
戯
Url
%E6%88%AF

Code

MD5
47fd07b7c7b33d6e558736247c3dff09
Sha1
5c9958ee1090c62f4b02b3025b805349d8fd2eed
Base64
5oiv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u622F';
console.log(char);  // Output: 戯

Java:

char c = '\u622F';
System.out.println(c);  // Output: 戯

JSON:

{"text": "\u622F"}  // Value: 戯

Python:

char = '\u622F'
print(char)  # Output: 戯

Perl:

my $char = "\x{622F}";
print $char;  # Output: 戯

PHP:

$char = "\x{622F}";
echo $char;  // Output: 戯

Ruby:

char = "\u{622F}"
puts char  # Output: 戯

Rust:

let c = '\u{622F}';
println!("{}", c);  // Output: 戯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00622F";  /* Display: 戯 */
}

HTML Decimal:

<p>HTML decimal: &#25135;</p>  <!-- Display: 戯 -->

HTML Hexadecimal:

<p>HTML hex: &#x622F;</p>  <!-- Display: 戯 -->

URL Encoding:

// 戯 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%AF

Encodings

MD5:

47fd07b7c7b33d6e558736247c3dff09

SHA1:

5c9958ee1090c62f4b02b3025b805349d8fd2eed

Base64:

5oiv