Unicode Finder

"諱" U+8AF1(CJK UNIFIED IDEOGRAPH-8AF1)

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

Programming

C
\u8AF1
JavaScript
\u8AF1
Java
\u8AF1
Json
\u8AF1
Python
\u8AF1
Perl
\x{8AF1}
PHP
\x{8AF1}
Ruby
\u{8AF1}
Rust
\u{8AF1}
Go
\u8AF1

Web

CSS
\008AF1
HtmlDecimal
諱
HtmlHexadecimal
諱
Url
%E8%AB%B1

Code

MD5
7d78e3cc2ce8d55a4691350abf756c5a
Sha1
2abf7238fd9212ca1ee99d1005f23f54f64dcff0
Base64
6Kux

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AF1';
console.log(char);  // Output: 諱

Java:

char c = '\u8AF1';
System.out.println(c);  // Output: 諱

JSON:

{"text": "\u8AF1"}  // Value: 諱

Python:

char = '\u8AF1'
print(char)  # Output: 諱

Perl:

my $char = "\x{8AF1}";
print $char;  # Output: 諱

PHP:

$char = "\x{8AF1}";
echo $char;  // Output: 諱

Ruby:

char = "\u{8AF1}"
puts char  # Output: 諱

Rust:

let c = '\u{8AF1}';
println!("{}", c);  // Output: 諱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008AF1";  /* Display: 諱 */
}

HTML Decimal:

<p>HTML decimal: &#35569;</p>  <!-- Display: 諱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AF1;</p>  <!-- Display: 諱 -->

URL Encoding:

// 諱 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%B1

Encodings

MD5:

7d78e3cc2ce8d55a4691350abf756c5a

SHA1:

2abf7238fd9212ca1ee99d1005f23f54f64dcff0

Base64:

6Kux