Unicode Finder

"灩" U+7069(CJK UNIFIED IDEOGRAPH-7069)

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

Programming

C
\u7069
JavaScript
\u7069
Java
\u7069
Json
\u7069
Python
\u7069
Perl
\x{7069}
PHP
\x{7069}
Ruby
\u{7069}
Rust
\u{7069}
Go
\u7069

Web

CSS
\007069
HtmlDecimal
灩
HtmlHexadecimal
灩
Url
%E7%81%A9

Code

MD5
184f34622c1acdc454bafa2b28cd7ba9
Sha1
f3fc337b084ec8a7899c6d39cd952ee9219f060f
Base64
54Gp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7069';
console.log(char);  // Output: 灩

Java:

char c = '\u7069';
System.out.println(c);  // Output: 灩

JSON:

{"text": "\u7069"}  // Value: 灩

Python:

char = '\u7069'
print(char)  # Output: 灩

Perl:

my $char = "\x{7069}";
print $char;  # Output: 灩

PHP:

$char = "\x{7069}";
echo $char;  // Output: 灩

Ruby:

char = "\u{7069}"
puts char  # Output: 灩

Rust:

let c = '\u{7069}';
println!("{}", c);  // Output: 灩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007069";  /* Display: 灩 */
}

HTML Decimal:

<p>HTML decimal: &#28777;</p>  <!-- Display: 灩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7069;</p>  <!-- Display: 灩 -->

URL Encoding:

// 灩 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%A9

Encodings

MD5:

184f34622c1acdc454bafa2b28cd7ba9

SHA1:

f3fc337b084ec8a7899c6d39cd952ee9219f060f

Base64:

54Gp