Unicode Finder

"炯" U+70AF(CJK UNIFIED IDEOGRAPH-70AF)

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

Programming

C
\u70AF
JavaScript
\u70AF
Java
\u70AF
Json
\u70AF
Python
\u70AF
Perl
\x{70AF}
PHP
\x{70AF}
Ruby
\u{70AF}
Rust
\u{70AF}
Go
\u70AF

Web

CSS
\0070AF
HtmlDecimal
炯
HtmlHexadecimal
炯
Url
%E7%82%AF

Code

MD5
d891fe5ed7d2891a199916254075a53f
Sha1
61103a47b8f9f33d1fde99802d17a0f080ca106c
Base64
54Kv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70AF';
console.log(char);  // Output: 炯

Java:

char c = '\u70AF';
System.out.println(c);  // Output: 炯

JSON:

{"text": "\u70AF"}  // Value: 炯

Python:

char = '\u70AF'
print(char)  # Output: 炯

Perl:

my $char = "\x{70AF}";
print $char;  # Output: 炯

PHP:

$char = "\x{70AF}";
echo $char;  // Output: 炯

Ruby:

char = "\u{70AF}"
puts char  # Output: 炯

Rust:

let c = '\u{70AF}';
println!("{}", c);  // Output: 炯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070AF";  /* Display: 炯 */
}

HTML Decimal:

<p>HTML decimal: &#28847;</p>  <!-- Display: 炯 -->

HTML Hexadecimal:

<p>HTML hex: &#x70AF;</p>  <!-- Display: 炯 -->

URL Encoding:

// 炯 URL encoding
https://unicodefinder.com/search.php?query=%E7%82%AF

Encodings

MD5:

d891fe5ed7d2891a199916254075a53f

SHA1:

61103a47b8f9f33d1fde99802d17a0f080ca106c

Base64:

54Kv