Unicode Finder

"榬" U+69AC(CJK UNIFIED IDEOGRAPH-69AC)

U+69AC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-69AC

Programming

C
\u69AC
JavaScript
\u69AC
Java
\u69AC
Json
\u69AC
Python
\u69AC
Perl
\x{69AC}
PHP
\x{69AC}
Ruby
\u{69AC}
Rust
\u{69AC}
Go
\u69AC

Web

CSS
\0069AC
HtmlDecimal
榬
HtmlHexadecimal
榬
Url
%E6%A6%AC

Code

MD5
1036000a90962e7f3dd51f3f2faf9321
Sha1
e93949f810fc32e1a139b591d92ae8a5aa4410fe
Base64
5qas

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u69AC';
console.log(char);  // Output: 榬

Java:

char c = '\u69AC';
System.out.println(c);  // Output: 榬

JSON:

{"text": "\u69AC"}  // Value: 榬

Python:

char = '\u69AC'
print(char)  # Output: 榬

Perl:

my $char = "\x{69AC}";
print $char;  # Output: 榬

PHP:

$char = "\x{69AC}";
echo $char;  // Output: 榬

Ruby:

char = "\u{69AC}"
puts char  # Output: 榬

Rust:

let c = '\u{69AC}';
println!("{}", c);  // Output: 榬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0069AC";  /* Display: 榬 */
}

HTML Decimal:

<p>HTML decimal: &#27052;</p>  <!-- Display: 榬 -->

HTML Hexadecimal:

<p>HTML hex: &#x69AC;</p>  <!-- Display: 榬 -->

URL Encoding:

// 榬 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%AC

Encodings

MD5:

1036000a90962e7f3dd51f3f2faf9321

SHA1:

e93949f810fc32e1a139b591d92ae8a5aa4410fe

Base64:

5qas