Unicode Finder

"諫" U+8AEB(CJK UNIFIED IDEOGRAPH-8AEB)

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

Programming

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

Web

CSS
\008AEB
HtmlDecimal
諫
HtmlHexadecimal
諫
Url
%E8%AB%AB

Code

MD5
861806ab86ae0e5be7b9a8aa9ddf2232
Sha1
2d9888000ea1d2a2a9efe4f59977034592249841
Base64
6Kur

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AEB';
console.log(char);  // Output: 諫

Java:

char c = '\u8AEB';
System.out.println(c);  // Output: 諫

JSON:

{"text": "\u8AEB"}  // Value: 諫

Python:

char = '\u8AEB'
print(char)  # Output: 諫

Perl:

my $char = "\x{8AEB}";
print $char;  # Output: 諫

PHP:

$char = "\x{8AEB}";
echo $char;  // Output: 諫

Ruby:

char = "\u{8AEB}"
puts char  # Output: 諫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35563;</p>  <!-- Display: 諫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AEB;</p>  <!-- Display: 諫 -->

URL Encoding:

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

Encodings

MD5:

861806ab86ae0e5be7b9a8aa9ddf2232

SHA1:

2d9888000ea1d2a2a9efe4f59977034592249841

Base64:

6Kur